当前位置: 代码迷 >> ASP.NET >> 未能加载类型 fredck.fckeditorv2.filebrowserconnector,该如何解决
  详细解决方案

未能加载类型 fredck.fckeditorv2.filebrowserconnector,该如何解决

热度:9815   发布时间:2013-02-25 00:00:00.0
未能加载类型 fredck.fckeditorv2.filebrowserconnector
未能加载类型 fredck.fckeditorv2.filebrowserconnector
feceditor出现在个错误是为什么啊?
谢谢了。

------解决方案--------------------------------------------------------
打开 editor/filemanager/connectors/aspx/config.aspx 


修改CheckAuthentication()方法,返回true 


C# code

private bool CheckAuthentication()
{
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
//
// return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );
//
// ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
// user logs in your system.

return true;
}