【ASP.NET】:Ckeditor+Fckeditor的使用

首先这三个文件:下载ckeditor和ckeditor_aspnet_3.6.4和ckfinder

  然后把这三个文件复制到项目根目录下

  添加引用CKEditor.NET.dll      CKFinder.dll

然后添加选项卡,选中CKEditor.NET.dll

  

接下来配置ckfinder下的config.ascx文件

  修改:BaseUrl = "~/ckfinder/userfiles/";

然后在Page_Load中

    CKFinder.FileBrowser filebrowser = new CKFinder.FileBrowser();
        filebrowser.BasePath = "ckfinder/";
        filebrowser.SetupCKEditor(CKEditorControl1);

就这样!

posted @ 2013-09-17 16:21  YoMe  阅读(249)  评论(0编辑  收藏  举报