如何显示在传统的ASP使用的Response.Write中国人物

问题描述 投票:0回答:2

如何使用的Response.Write的ASP显示中国字?

<%
  Response.CodePage=51936
  Response.Charset="UTF-8"
  Response.ContentType = "text/html"
  Dim Msg
  Msg="简"
%>
<%Response.Write Msg%>
unicode asp-classic response cjk chinese-locale
2个回答
3
投票

Codepage 51936是EUC-CN。不是UTF-8,这是65001。


0
投票

这幽长的问题,仍需要验证的解决方案!我成功地从一个UTF-8编码的经典ASP脚本显示中国和韩国字符。我所做的只是简单地将元charset标记在文档的头部,就像这样:

<%@ Language=VBScript %>
<% 
  chinese="欢迎" 
%>
<html>
<head>
  <meta charset="UTF-8" />
  ...
</head>
<body>
  <%= chinese %>
</body>
</html>
© www.soinside.com 2019 - 2024. All rights reserved.