如何使用response.write在ASP中显示汉字?
<%
Response.CodePage=51936
Response.Charset="UTF-8"
Response.ContentType = "text/html"
Dim Msg
Msg="简"
%>
<%Response.Write Msg%>
如何使用response.write在ASP中显示汉字?
<%
Response.CodePage=51936
Response.Charset="UTF-8"
Response.ContentType = "text/html"
Dim Msg
Msg="简"
%>
<%Response.Write Msg%>
代码页 51936是 EUC-CN。不是 UTF-8,即 65001。
这个长期安静的问题,仍然需要一个经过验证的解决方案!我成功地从 UTF-8 编码的 Classic ASP 脚本中显示中文和韩文字符。我所做的只是在文档头部添加元字符集标签,如下所示:
<%@ Language=VBScript %>
<%
chinese="欢迎"
%>
<html>
<head>
<meta charset="UTF-8" />
...
</head>
<body>
<%= chinese %>
</body>
</html>