I am using server side code to get all parameters from the users, using the name parameter as follows,
string name = HttpContext.Current.Request.QueryString["name"];
I have to pass name in Hebrew as well. When I pass Hebrew in chrome and Firefox all is good but,
in IE the Hebrew sequence is coming as ?????
Is there any way to fix this on the server side?
Thanks in Advance!