G
Guest
Hi, i am currently working on ASP.Net v1.0 and is encountering the following
problem. In javascript, I'm passing in:
"somepage.aspx?QSParameter=<RowID>Chèques</RowID>" as part of the query
string. However, in the code behind when I tried to get the query string
value by calling Request.QueryString("QSParameter"), the value I got is:
"<RowID>Chques</RowID>". The special character "è" has been stripped out.
The web.config file is currently set to use UTF-8 for request, response, and
file encoding. What could be causing characters like "è" to be stripped out
of the query string in the code behind? Do I need to set some other value or
use some special processing code? Thanks.
problem. In javascript, I'm passing in:
"somepage.aspx?QSParameter=<RowID>Chèques</RowID>" as part of the query
string. However, in the code behind when I tried to get the query string
value by calling Request.QueryString("QSParameter"), the value I got is:
"<RowID>Chques</RowID>". The special character "è" has been stripped out.
The web.config file is currently set to use UTF-8 for request, response, and
file encoding. What could be causing characters like "è" to be stripped out
of the query string in the code behind? Do I need to set some other value or
use some special processing code? Thanks.