未能加载类型“FredCK.FCKeditorV2.FileBrowser.Config”。 F:\ysyj-01\WEB\fckeditor\editor\filemanager\connectors\aspx\config.ascx 1

解决方案 »

  1.   

    fckeditor\editor\filemanager\connectors\aspx\config.ascx 
    确定你项目里有这个
      

  2.   

     你下载一个新的FCK,然后全部考到你的项目,基本上问题就没了。
      

  3.   

     可能是你不小心删掉,或者你修改了里面的config.ascX,别忘了再WEBConfig里面加FCK的配置节
      

  4.   

    <!--FCKEdit配置-->
        <add key="FCKeditor:BasePath" value="~/FCKEditor/"/>
        <!--编辑器所在路径-->
        <add key="FCKeditor:UserFilesPath" value="~/userfiles/"/>
    加了吗
      

  5.   

    没有,我今天刚用这个HTML编辑器,不太会
      

  6.   

    http://apps.hi.baidu.com/share/detail/6454772
    看看吧
      

  7.   

    <add key="FCKeditor:BasePath" value="~/fckeditor/"/>
        <add key="FCKeditor:UserFilesPath" value="~/FileUpload/"/>
    加到<appSettings>里面
      

  8.   

    以下是网上搜的,你先看看这里是怎么return的FCKEditor.NET 2.6 的安全性配置
    文件上传,一直是容易被利用的攻击通道,呵呵,所以这里要重点提一下:
    打开 editor/filemanager/connectors/aspx/config.ascx
    private bool CheckAuthentication()
    {
            //为了防止任意用户均可以打开上传页或者浏览服务器文件
            //建议将此处和你的后台管理权限进行集成,如果不需要验证,则直接返回 true 即可
            //------------------------------------------------        //1. 假设你用 session 存储用户的登录验证信息,假设 session 的 key 为 auth
            // 则需要返回 
            //return (Session["auth"] != null && Session["auth"] == "验证值");        //2. 如果你用 FORM 验证方式,则可以验证
            //return Page.User.Identity.IsAuthenticated; // 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;
    }
      

  9.   

    为什么我web.config中加了哪段还是报同样的错误呢,