问题: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就是页面路径或文件夹路径。 |