asp.net实现编辑器功能

首先去网上下个CKEditor的压缩包,然后解压到你的项目目录下

然后将CKEditor.NET.dll,CKFinder.NET.dll放到你的bin目录下

在项目中添加这两个引用

在你要使用的编辑器的aspx文件加上:

<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>

 

这样就将编辑器放到你的页面上去了。

string a = CKEditor1.Text;

CKFinder.FileBrowser _FileBrowser = new CKFinder.FileBrowser();
_FileBrowser.SetupCKEditor(CKEditor1);

这样就获取到编辑器里面的值了


你可能感兴趣的:(asp.net实现编辑器功能)