当前位置:编程学习 > C#/ASP.NET >>

.net 中字符集设定问题?????

例: 在一个HTML页中 <script language='javascript' src='....XX.aspx'></script>
在XX.ASPX页面里只做了 response.write("document.write('中国人!');");
在样在HTML页面中输出的却是乱码......
问题:我怎样去判断请求来的是HTML页面使用是什么字符编码?我又怎样去输出相应的字符...正确显示汉字! --------------------编程问答-------------------- 需要在web.config中设置
<system.web>
  <globalization requestEncoding="GB2312" responseEncoding="GB2312"/>
  ...
</...> --------------------编程问答-------------------- 那能不能不写死了 --------------------编程问答-------------------- 可以不写死。。不过你的脚本啊。。什么的。。好像不能有中文。。 --------------------编程问答-------------------- The following example illustrates the script charset attribute you can use to set reference page's charset:

<script language='javascript' src='....XX.aspx' charset="gb2312" ></script>
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,