The specified code page feature is invalid.
CODEPAGE attribute: refers to the code page of the web page
If the web script made is different from the default code page of the web server, the code page must be indicated:
codePage = 936 Simplified Chinese GBK
CODEPAGE = 950 Traditional Chinese BIG5
codePage = 437 American/Canadian English
codePage = 932 Japanese
codePage = 949 Korean
codePage = 866 Russian
CODEPAGE = 65001 Unicode UFT-8
Page code use:
Based on VBScript
vbscript
<%@Language = VBScript CodePage = 65001%>
javascript
<%@Language = JavaScript CodePage = 65001%>
Here are some supplements:
effect
Let ASP read the form submission, database, etc. with a specific encoding.
Use
Add in the first line of ASP file. According to different code pages, use the following code:
<%@ codePage = 936%> Simplified Chinese
<%@ codePage = 950%> Traditional Chinese
<%@ codePage = 65001%> UTF-8
Pay attention
If webpra A is not set with codePage, and webp B and C are set with codePage. When visiting the webpra first, use iIS default codePage; when you visit the webp page B, use the code specified by the webp page B; when you visit the web page A, you still use the code specified by the webp page B. Finally, visit the webp page C, and use the code specified by the webp page c to specify the codePage specified by the webp cricket C. Essence