欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 页面编码常见问题小结

程序员文章站 2024-03-07 17:33:15
如果要为整个项目设置页面编码,那么就可以在 web.config 文件中添加一个 globalization 属性,然后设置它的 fileencoding、requeste...
如果要为整个项目设置页面编码,那么就可以在 web.config 文件中添加一个 globalization 属性,然后设置它的 fileencoding、requestencoding,和 responseencoding 特性:
<configuration>
<system.web>
<globalization
fileencoding="utf-8"
requestencoding="utf-8"
responseencoding="utf-8"
culture="en-us"
uiculture="de-de"
/>
</system.web>
</configuration>
如果要为单独的页面设置编码,那么就可以设置 @ page 指令的 requestencoding 和 responseencoding 特性:
<%@ page requestencoding="utf-8" responseencoding="utf-8" %>

有时我们已经在配置文件中将整个站点的编码设置为gb2312,但某个页面却需要使用utf-8,这时我们可以在配置文件configuration节下新增location节点:
程序代码
<location path="test.aspx">
<system.web>
<globalization fileencoding="utf-8" requestencoding="utf-8" responseencoding="utf-8" culture="en"/>
</system.web>
</location>
如果是要将某个页面单独设置为gb2312则为:
程序代码<location path="test.aspx">
<system.web>
<globalization fileencoding="gb2312" requestencoding="gb2312" responseencoding="gb2312" culture="zh-cn"/>
</system.web>
</location>

以下是一些网友的解决问题的方法参考:

在用asp.net写网上支付的接口程序时,遇到一个奇怪问题,通过表单提交过去的中文全是乱码,英文正常。而用asp程序进行测试,可以正常提交中文,asp页面中有这样的html代码:

< meta http-equiv ="content-type" content ="text/html; charset=gb2312" >

可是将这个代码加入到asp.net页面中,依然解决不了问题。分析了一下,问题应该是编码引起的,对方的程序只能处理gb2312编码的页面提交过来的中文数据。难道加了上面的代码,asp.net却不是以gb2312编码显示的?打开该页面,查看一下浏览器的编码,原来是utf-8,原因找到,怎么解决呢?看来,asp.net不理睬上面的代码,自己向浏览器发送编码信息,那我设置一下response.contentencoding试试,在page_load中加上如下代码:

response.contentencoding = system.text.encoding.getencoding( " gb2312 " );

ok!问题解决!