Hi
I'm writing a web service which expects one of the parameters (called "hlink") to be a url. Before calling the web service I URLEncode the parameter in question ("hlink"). I then call the web service with an hlink parameter value of 'a.apsx?a=1&b=2
. When the request arrives at the web service method I can examine hlink - it has received the url ok, but only as "a.aspx?a=1"
- i.e. it has lost the &b=2
part of the parameter. This seems to be asp.net stripping off the &b=2
bit - how can I get the whole parm value passed into my web method?
Thanks very much!