FCKEditor themed aspnet error in file browser
According to the post here, If you are greeted with the following error when trying to upload files using the file manager:
Using themed css files requires a header control on the page. (e.g. <head runat="server" />).
You don’t need aspnet themes within the fckeditor folder, so simply add a web.config file in the folder, with the following content:
<configuration>
<system.web>
<pages styleSheetTheme=""> </pages>
</system.web>
</configuration>
That would not work because it miss out another setting which is the ‘theme’ setting, so the correct settings would be as below:
<configuration>
<system.web>
<pages theme="" styleSheetTheme=""></pages>
</system.web>
</configuration>
For FCKEditor, this web.config file need to be located in the same folder as the upload.aspx file.
I believe not just FCKEditor but also most of the ASP.NET project out there.
No Responses to “FCKEditor themed aspnet error in file browser”
RSS feed for comments on this post. TrackBack URL
