解读SiteFactory修改成GB2312的编码_动易Cms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

问题:SiteFactory是否可以修改成GB2312的编码?

方法:答案是可以的,可以支持配置编码输出,找到根目录下的web.config,找到““<system.web>”,下面增加红色配置:

<system.web>
      <globalization  requestEncoding="GB2312" responseEncoding="GB2312" fileEncoding="GB2312" />

....................其它配置
</system.web>

以上为配置整站为GB2312编码。
 

如果是单独让某一页面支持GB2312,如,打印页面需要的是GB2312编码,那么就可以加上下面红色带的配置:

<configuration>
<location path="Print.aspx">
    <system.web>
      <globalization  requestEncoding="GB2312" responseEncoding="GB2312" fileEncoding="GB2312" />
    </system.web>
  </location>
....................其它配置
</configuration>


附:这里“ <location path="Print.aspx">”,path就是页面路径或文件夹路径。

查看更多 动易Cms教程  动易Cms模板

来源:模板无忧//所属分类:动易Cms教程/更新时间:2009-07-17
相关动易Cms教程