给单个ASPX页面设置编码

如果是要将某个页面单独设置为gb2312则为:

程序代码

 

<location path="Interface/Editor2ProofHandler.ashx">
    <system.web>
      <globalization fileEncoding="gb2312" requestEncoding="gb2312" responseEncoding="gb2312" culture="zh-CN"/>
    </system.web>
  </location>

原文地址:https://www.cnblogs.com/HeroBeast/p/1355762.html