Chinese garbled problem in ASP.

Source: Internet
Author: User

The default encoding for ASP. Utf-8, when there is Chinese in the string interacting with other platforms often garbled, this is because the other platform to take GB2312 encoding, to solve this problem, you can write a function, the string is converted and then processed on the line, the following is the source code of the function:

Imports system.mathfunction urlencoding (ByVal Vstrin As String)   Dim strreturn As String   strreturn = ""   Dim i A s integer   Dim thischr As String   Dim innercode, Hight8, Low8 as Integer for   i = 1 to vstrin.length       THISCHR = Mid (Vstrin, I, 1)          If Abs (ASC (THISCHR)) < &hff then                strreturn = strreturn & thischr          Else                 Inn ErCode = ASC (THISCHR)           if Innercode < 0 then                Innercode = Innercode + &h10000           End if           Hight8 = (in Nercode and &HFF00)/&hff           Low8 = Innercode and &hff           strreturn = strreturn & "%" & Hex (Hight 8) & "%" & Hex (LOW8)      End If Next urlencoding = Strreturnend Function
Related Article

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.