日期:2014-05-19  浏览次数:20369 次

关于乱码问题,麻烦高手帮助
写了个小程序,可是工程人员说网页3次出现乱码,而且是所有的客户端
网页放在windows   2003上面的
麻烦高手说说到底是什么问题啊

------解决方案--------------------
???
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 ">
------解决方案--------------------
在页面
<head> </head>
之间加上
<meta http-equiv= "Content-Type " content= "text/html; charset=gb2312 ">

看看你的web.config
<system.web> 中是否有(或者是其他编码)
<globalization requestEncoding= "gb2312 " responseEncoding= "gb2312 " />
</system.web>
------解决方案--------------------
上面的不可以解决问题吗,这样就可以吧
<system.web>
<globalization requestEncoding= "gb2312 " responseEncoding= "gb2312 " />
</system.web>