为大家提供专业的保定网站制作保定网站建设保定网页设计保定网站策划保定网站推广服务。我们将SEO技术与网站制作******的结合,让您的网站更具竞争力!
服务电话:13171905859
网站制作

gb2312和utf-8页面传递参数乱码解决方法

发布人:管理员   发布时间:2011-2-1
要解决ASP同一站点下gb2312和utf-8页面传递参数乱码问题,只需严格做到以下4点即可。
①.页面文件使用正确的编码,gb2312使用ANSI,utf-8使用utf-8;
②.ASP代码中设置正确的CODEPAGE,gb2312使用936,utf-8使用65001;
③.HTML代码中设置正确的charset,gb2312使用gb2312,utf-8使用utf-8;
④.将传递的参数值使用js的escape函数进行编码;
t1.asp(ANSI编码):
以下是代码:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%Session.CodePage=936%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Page(gb2312)-jb51.net</title>
</head>

<body>
<script type="text/javascript">
document.write("<a href='t2.asp?keyword=" + escape("木子屋") + "'>木子屋</a>");
</script>
<br/>
<%
Response.Write(Request.QueryString("keyword"))
%>
</body>
</html>
t2.asp(utf-8编码):
以下是代码:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Page(utf-8)-jb51.net</title>
</head>

<body>
<script type="text/javascript">
document.write("<a href='t1.asp?keyword=" + escape("木子屋") + "'>木子屋</a>");
</script>
<br/>
<%
Response.Write(Request.QueryString("keyword"))
%>
</body>
</html>
公司地址:保定市复兴路利家世纪城7号楼2-1303 邮编:071051 公司邮箱:384697065@qq.com
服务热线:0312-6770690、15128291748、13171905859 售后电话:13754429971 投诉电话:13171905859
版权所有:【科泉网络】 Copyright © 2010-2018 All Rights Reserved www.pg-stone.com 冀ICP备07500686号