Hi All,
I need to extract chinese characters from the query string in a ASP.NET web application. When I tried it, I get "????" instead of the actual text. I know I need to decode it with UTF-8 but its doesnot work. I have used
String text = System.Web.HttpUtility.UrlDecode(Request.QueryString["text"], System.Text.Encoding.UTF8);
but I get back "???" from the operation.
Please help