极好用的在线编辑器

来源:互联网 发布:php获取彩票开奖数据 编辑:程序博客网 时间:2024/05/17 08:19

 

 (1) 在webconfig 配置节中配置如下信息:

<appSettings>
  <!--在线编辑器配置项 start-->
  <add key="FCKeditor:BasePath" value="~/fckeditor/"/>
  <add key="FCKeditor:UserFilesPath" value="~/Upload/"/>
  <!--在线编辑器配置项 end-->
 </appSettings>

(2)将附件中的dll 及JS脚本文件夹添加引用到项目中,然后再在HTML页面注册一下:<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>调用控件如下:

   <FCKeditorV2:FCKeditor ID="fckEditorContractCriterion" runat="server" Height="400px"    Width="570px" />

如附件model