您的位置:首页 > 编程语言 > ASP

解决asp.net中使用FckEditor上传文件,中文名称乱码的问题

2012-08-31 11:58 1201 查看
在FCKeditor文件夹中添加Web.config文件,Web.config文件代码如下:

<?xml version="1.0" encoding="gb2312" ?>
<configuration>

<system.web>

<compilation defaultLanguage="c#" debug="false" />

<authorization>
<allow users="*" />
</authorization>

<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />

<customErrors mode="Off" />

<globalization requestEncoding="gb2312" responseEncoding="gb2312" fileEncoding="gb2312"    />

<pages validateRequest="false" enableEventValidation="false" enableViewStateMac="false" viewStateEncryptionMode ="Never" />

<xhtmlConformance mode="Legacy"/>

<httpRuntime maxRequestLength="2097151" executionTimeout="3600"/>
</system.web>

</configuration>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐