Hi,
In my application, user can edit and change the values of querystring parameters. As the application supports Spanish and French languages, user can enter the unicode characters in querystring. The values edited by user are retrieved using Request.Querystring method. But when unicode characters like á,é,í,ó,ú,ý,etc.are entered in the querystring, these characters are not retrieved properly on server side. E.g. If value like "Googleèsn" is entered in the querystring then actual value retrieved on the server side is "Google�sn". This is observed only in case of unicode characters.
Also, I can not encode the querystring parameters values as those are entered manually by the user.
I am using visual studio 2005 and .net framework 2.0. The server side code is written in VB.NET.
Can anyone please tell me how to retrieve unicode characters entered manually in the querystring?
Thanks