在.net 环境下,进行了伪静态页面处理后,后台的Fckeditor就不能正常显示了

解决方法:

在web.config 中添加

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

你可能感兴趣的:(fckeditor)