解決asp.net中使用FckEditor上傳文件,中文名稱亂碼的問題

在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>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章