Search

You searched for the word(s): userid:635646

Matching Posts

  • Re: MySQL 5.0 and utf8

    I'm having a similar problem. I installed MySQL 5.0.51b and MySQL Connector/ODBC 3.51.25. Then after reading this post, I installed MySQL Connector/NET 5.2.2. However, this requires me to change too much of my existing programming code (I've been using ADODB, record sets, EOF, MoveNext, etc.). I don't want to use SQLDataReader, etc. Therefore, instead of changing all of my code, I installed MySQL Connector/ODBC 5.1.4. However, this didn't enable my non-English characters to show properly
    Posted to MySQL (Forum) by BugInfested on 7/7/2008
  • Re: Reading aspx variables from code-behind vb sub

    Thanks mbanavige. It works. I assume that I need "Partial" in the code-behind for my Class header? It seems that I don't need "Public" for either the Class or Sub headers, and it still works. I have this in my code-behind now: Partial Class mytest Inherits System.Web.UI.Page Protected VARIABLE As Integer Sub Sub1( ByVal sender As Object ) VARIABLE = 2 End Sub End Class
    Posted to Web Forms (Forum) by BugInfested on 6/18/2008
  • Re: Reading aspx variables from code-behind vb sub

    mbanavige, Thanks for replying. However, I now get this error: Compiler Error Message: BC30369: Cannot refer to an instance member of a class from within a shared method or shared member initializer without an explicit instance of the class. Source Error: Line 10: Line 11: Public Shared Sub Sub1(ByVal sender As Object) Line 12: VARIABLE = 2 Line 13: End Sub Line 14: I have this code in my code-behind: Partial Public Class mytest Inherits System.Web.UI.Page Dim VARIABLE As Integer Public Shared Sub
    Posted to Web Forms (Forum) by BugInfested on 6/18/2008
  • Re: Reading aspx variables from code-behind vb sub

    User madgts4 asked a simple question. I would like to do the same thing, which I thought should be simple. However, his example and the answers/examples used to reply to him, are confusing. What if I had this code in my ASPX page: Public VARIABLE As Integer = 1 I want to be able to read VARIABLE in my code-behind (VB) page. What code do I need to do this? I have this code in my code-behind page: Public Class myclass Inherits System.Web.UI.Page Public Shared Sub Sub1( ByVal sender As Object ) VARIABLE
    Posted to Web Forms (Forum) by BugInfested on 6/17/2008
  • Re: Localizing FileUpload control

    MrNick, Did the CSS/JS workaround work? If so, can you share it with me? aweil, I agree with MrNick. It is very dumb for the button to say “Browse…” when the rest of the wepages are in French or Arabic. Even if the person made it to the US and is using the hotel’s English computer, if the person visits an Arabic or French site, then all of the text on the site should be Arabic or French. It’s dumb that the button still says “Browse…”
    Posted to Localization (Forum) by BugInfested on 3/4/2008
  • Re: can i use both lang (vb & c#) in same page ??

    My apologies if I didn't read all of the postings correctly. Was there a consensus? Am I able to have both ASPX.VB and ASPX.CS files in the same web site? Am I able to compile (publish) and run a web site that has both ASPX.VB and ASPX.CS files? I assume that I cannot have both VB and C# code in the same ASPX, ASPX.VB or ASPX.CS file?
    Posted to Getting Started (Forum) by BugInfested on 3/2/2008
  • Re: Sending a plain text email - in FRENCH! Any help?

    How do I code the SUBJECT line to handle French accented characters? I'm sending out French e-mails as well with my ASPX.VB program. For the body of the message, I've used HTML characters for the French characters with accents. However, there are French accented characters in the SUBJECT Line as well. The French accented characters appear as ? question marks and the HTML characters are not rendered, when received on the Outlook client. How do I code for this in my ASPX.VB program?
    Posted to Localization (Forum) by BugInfested on 2/22/2008
  • Re: charsets in email (Japanese/Chinese, double-byte)

    I'm trying to get French characters with French accents to show properly in the subject line of the e-mails that I'm sending from an ASPX.VB page. I used your above code. I used iso-8859-1 and iso-8859-2 and utf-8, but none of them worked: Dim enc as Encoding = Encoding.GetEncoding("utf-8") Dim subjectFormat As String = "=?{0}?B?{1}?=" Dim SubBytes As Byte () = enc.GetBytes( Me .txtSubject.Text) objMessage.Subject = String .Format(subjectFormat, "utf-8", Convert
    Posted to Localization (Forum) by BugInfested on 2/22/2008
  • Passing values from Javascript to ASPX

    We have a program that needs to pass a variable value from Javascript to ASPX. Can somebody tell me how to do this?
    Posted to Getting Started (Forum) by BugInfested on 1/28/2008
  • Re: The file '/ApplicationName/Default.aspx' has not been pre-compiled, and cannot be requested

    Ting, I have this error as well. I'm getting the same error message that AnatolyR got. In answer to your questions: 1. default.aspx was NOT added after the application was compiled. 2. bin folder contains default.aspx.cdcab7d2.compiled , default.aspx.dfaa92f0.compiled and default2.aspx.dfaa92f0.compiled How do we fix this bug? Why are ASP.NET's error messages so cryptic and user-unfriendly?
Page 1 of 11 (107 items) 1 2 3 4 5 Next > ... Last »