Is there a .NET encoding method that I could use to encode the URL that needs to be passed in the URL parameter?
For example, I have:
url_of_interest = "http://asdf.asdf/asdf.htm"
and I want to include this as one (1) URL form parameter when I upload it to a web application:
http://mywebservice/upload?url=<<encoded URL here>>
source
share