基于.net使用FCKeditor

之前使用过FreeTextBox,生成太多垃圾代码,后来看到FCKeditor,试用了一下感觉不错。

官方网:http://www.fckeditor.net/
1.下载
FCKeditor.Net
http://sourceforge.net/project/showfiles.php?group_id=75348&package_id=137125
FCKeditor 2.3.2 (FCKeditor基本文件)
http://prdownloads.sourceforge.net/fckeditor/FCKeditor_2.3.2.zip?download

Web. Config文件,修改appSettings元素,配置如下: <appSettings>
  <add key="FCKeditor:BasePath" value="~/FCKeditor/"/>FCKeditor基本文件目录
  <add key="FCKeditor:UserFilesPath" value="/Files" />文件上传目录
</appSettings>

把.net的bin/FredCK.FCKeditorV2.dll解压引用就行
fckconfig.js里有很多配置保护语言版本,上传等设置
原文地址:https://www.cnblogs.com/mokliu/p/2138207.html