在.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>
posted @ 2012-06-20 16:04  分飞  阅读(329)  评论(0编辑  收藏  举报