![]() |
#2
宝贝_Bu哭2011-11-25 17:37
|

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
Session.CodePage=65001
Response.CodePage=65001
Response.Charset="UTF-8"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.>
<html xmlns="http://www.>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<%
Dim name
name = request("name")
%>
<%= name%>
<a href="test.asp?name=111中国大酒店">中国大酒店</a>
</body>
</html>
<%
Session.CodePage=65001
Response.CodePage=65001
Response.Charset="UTF-8"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.>
<html xmlns="http://www.>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<%
Dim name
name = request("name")
%>
<%= name%>
<a href="test.asp?name=111中国大酒店">中国大酒店</a>
</body>
</html>
上面代码,在IE6下面输出不完整,其他浏览器都没问题。。
求解释。。