天天看點

fckeditor編輯器的使用

關于fckeditor的檔案及dll在下面這個位址下載下傳:

主要步驟:

1、解壓檔案後,将fckeditor檔案夾拷貝到根目錄下,然後添加引用,浏覽到dll檔案夾中對應的dll即可。

2、添加fckeditor的注冊及引入控件,如下

<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>

<FCKeditorV2:FCKeditor ToolbarSet="SmallBasic" ID="fck_content" runat="server" Width="100%" Height="290">

</FCKeditorV2:FCKeditor>

3、那個fckeditor檔案夾放在網站根目錄下,然後再Web.Config檔案中<appSettings></appSettings>添加如下的幾個配置項add。

<appSettings>

    <add key="FCKeditor:BasePath" value="~/fckeditor/"/>

    <!--FileUpLoad 配置-->

    <add key="ServiceAddress" value=""></add>

    <add key="UpLoadSize" value="102400"></add>

    <add key="AbsouleUrl" value=""/>

    <add key="RelativeUrl" value="upload_files\userFiles\"/>

   <add  key ="FCKeditor:UserFilesPath"  value ="~/upload_files/userFiles/"  />

      <!--End FileUpLoad 配置-->

</appSettings>

 效果圖如下:

fckeditor編輯器的使用