A
Aahz
Hello,
In my asp.net application I need to get url to string like this:
str = Request.Url.AbsoluteUri;
Problem is with url'a that have spaces like: http://www.site.com/dial
the number.aspx
I heard about EncodeUrl method but I dont know how to use it.
I tried: str = EncodeUrl(Request.Url.AbsoluteUri); , but thats not it
Any help? Thank you
In my asp.net application I need to get url to string like this:
str = Request.Url.AbsoluteUri;
Problem is with url'a that have spaces like: http://www.site.com/dial
the number.aspx
I heard about EncodeUrl method but I dont know how to use it.
I tried: str = EncodeUrl(Request.Url.AbsoluteUri); , but thats not it
Any help? Thank you