How to solve the problem of Chinese garbled characters in request. Uri. tostring...

Source: Internet
Author: User

For example: "webform1.aspx? B = "+ httputility. urlencode (" Chinese ", system. Text. encoding. Default ))

If request. uri. tostring (), in a certain environment, garbled characters may occur. It seems that tostring () is unicode encoded on the URI, so the garbled code becomes yellow, we can detour to get what we deserve.CodeAs follows ..

Code
Httpcontext. Current. Request. contentencoding = System. Text. encoding. default;

/*
1: String url = httpcontext. Current. Request. url. tostring ();
* The URL. tostring () method cannot be used, because tostring () is encoded in Unicode by default ..


*/
String Url3 = Httpcontext. Current. Request. url. originalstring;
String Url2 = Httpcontext. Current. Request. url. getleftpart (uripartial. query );
String URL = Httpcontext. Current. Request. rawurl;
String Url1 = Httpcontext. Current. Request. url. pathandquery;
String Strmessage = Webutility. geturlargs (url1, " B "

Code

I don't know what other good methods are available...

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.