Results 1 to 5 of 5

Thread: String and symbol issues !?

Hybrid View

  1. #1
    Fanatic Member
    Join Date
    May 2005
    Posts
    608

    Re: String and symbol issues !?

    Use URL encode and URL decode.

    HTH
    HoraShadow
    I do like the reward system. If you find that my post was useful, rate it.

  2. #2

    Thread Starter
    Addicted Member rabid lemming's Avatar
    Join Date
    Feb 2005
    Posts
    210

    Question Re: String and symbol issues !?

    Hi I have tried your suggestion along with a few other variations like:

    Code:
    Dim myURL0 As String = New String(Server.UrlDecode(Request.Url.ToString()))
                Response.Write(myURL0)
                Response.Write("<BR>")
                Dim myURL As String = New String(Server.HtmlDecode(Request.Url.ToString))
                Response.Write(myURL)
                Response.Write("<BR>")
                Dim myURL2 As String = New String(Server.HtmlEncode(Request.Url.ToString))
                Response.Write(myURL2)
                Response.Write("<BR>")
                Dim myURL3 As String = New String(Server.UrlDecode(Request.Url.ToString))
                Response.Write(myURL3)
                Response.Write("<BR>")
                Dim myURL4 As String = New String(Server.UrlEncode(Request.Url.ToString))
                Response.Write(myURL4)
                Response.Write("<BR>")
                Dim myURL5 As String = New String(Server.UrlPathEncode(Request.Url.ToString))
                Response.Write(myURL5)
                Response.Write("<BR>")
    None of which can get the ¬ i cant use any other symbol like # or ^ as ¬ is about the only symbol that isn't used as part of the regular expression syntax. Is their no other way to do it maybe ?

    I will wait for death with a smile and a big stick

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width