Hi,
I'm a classic ASP developer and my sites running on IIS 6.0 platform. I want move my sites to IIS 7 platform, but i have problem Request.QueryString method.
Example;
http://localhost/test.asp?message=Adı Soyadı
test.asp
---------------------------------------------------------------------------------------------------------
<%@ Language=VBScript CodePage=1254%>
<%
Response.CharSet="windows-1254"
Response.Write Request.QueryString("message")
%>
------------------------------------------------------------------------------------------------------------------------------
The code return following value
Ad? Soyad?
I can't escape() function, can I set IIS 7 property this problem?
Thanks.