在asp.net中使用fckeditor ,页面使用them时,通过编辑器上传图片或文件提示
"Using themed css files requires a header control on the page"
解决办法:
在fckeditor的web.config文件中做如下修改
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<pages styleSheetTheme="" theme=""> </pages>
</system.web>
</configuration>
修改文件上传路径:
~/fckeditor/filemanager/connectors/aspx/config.ascx
下修改
public override void SetConfig()方法中的
UserFilesPath = Page.ResolveUrl("~/userfiles/");
参考:
http://www.codeproject.com/KB/aspnet/theme_conflic_solutionfck.aspx
fckeditor与asp.net主题样式themes的解决方案
最新推荐文章于 2011-07-14 11:13:23 发布
本文介绍了解决在ASP.NET中使用FCKeditor时出现的“Using themed css files requires a header control on the page”错误的方法,并给出了如何配置文件上传路径的具体步骤。
977

被折叠的 条评论
为什么被折叠?



