我是新來的字符集和編碼。我不知道我在做什麼錯,但是當我想輸出你的時候,頁面只是吐出奇怪的代碼。這是我的代碼:經典ASP response.write UTF-8中文字符
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%Response.ContentType = "text/html"
Response.AddHeader "Content-Type", "text/html;charset=UTF-8"
Response.CodePage = 65001
Response.CharSet = "UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
</head>
<body>
<%response.write ("你好")%>
</body>
</html>
我只能在屏幕上看到的是:ä½A¥½ 的文件保存在UTF-8編碼爲好。
在此先感謝!