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