P
Peter Kirk
Hi
I need some help with sending "international" charcters in a parameter
string to a web application. I need to send the following for example:
http://localhost/myapp/TestAdmin.aspx?sort=å
Even though I see the Danish letter 'å' (a little 'a' with a circle over) in
the url, and if I "view source" on the web-page, the application itself
receives a strange character combination when it tries to extract the
parameter from the request.
If I do:
string sort = Request.Params["sort"];
then the variable sort recieves the value:
Ã¥
How can get the real value 'å' ?
Thanks,
Peter
I need some help with sending "international" charcters in a parameter
string to a web application. I need to send the following for example:
http://localhost/myapp/TestAdmin.aspx?sort=å
Even though I see the Danish letter 'å' (a little 'a' with a circle over) in
the url, and if I "view source" on the web-page, the application itself
receives a strange character combination when it tries to extract the
parameter from the request.
If I do:
string sort = Request.Params["sort"];
then the variable sort recieves the value:
Ã¥
How can get the real value 'å' ?
Thanks,
Peter