顯示中文字符如何使用response.write在ASP中顯示中文字符?如何在傳統ASP中使用response.write
<%
Response.CodePage=51936
Response.Charset="UTF-8"
Response.ContentType = "text/html"
Dim Msg
Msg="簡"
%>
<%Response.Write Msg%>
顯示中文字符如何使用response.write在ASP中顯示中文字符?如何在傳統ASP中使用response.write
<%
Response.CodePage=51936
Response.Charset="UTF-8"
Response.ContentType = "text/html"
Dim Msg
Msg="簡"
%>
<%Response.Write Msg%>
Codepage 51936是EUC-CN。不是UTF-8,即65001.
Response.Write總是發出非中文字符,無論代碼頁設置如何 – TrustyCoder
文本編輯器的編碼是什麼?整個工具鏈必須使用相同的編碼... – dda
我使用的是沒有BOM的UTF編碼。是否所有的頁面都有相同的編碼。實際上,我正在做的是定義需要在單個頁面中翻譯並將它們包含在其他頁面中。其他頁面可能有不同的編碼。 – TrustyCoder
嘗試'Response.CodePage = 65001' – Esailija