哦 是你为静态处理时把编辑器的地址也给重写了!
你去判断一下,如果是:fckeditor.html就不重写就好了!
或者是你的正则式将fckeditor.html单独处理。

解决方案 »

  1.   

    在webconfig 里写上
        <httpHandlers>
          <add verb="*" path="*.html" type="System.Web.UI.PageHandlerFactory"/>
        </httpHandlers>
    <compilation>
          <buildProviders>
            <add extension=".html" type="System.Web.Compilation.PageBuildProvider"/>
          </buildProviders>
        </compilation>这是iis6的问题,iis5不用设置
      

  2.   

     <httpHandlers>
      <add verb="*" path="*.html" type="System.Web.UI.PageHandlerFactory"/>
      </httpHandlers>
    <compilation>
      <buildProviders>
      <add extension=".html" type="System.Web.Compilation.PageBuildProvider"/>
      </buildProviders>
      </compilation>