zoukankan      html  css  js  c++  java
  • Config FCKeditor_2.6.4 with FCKeditor.Net_2.6.3

    This is a step by step tutorial on how to config FCKeditor work together with ASPX。

    Step 1:
    Download FCKeditor_2.6.4 & FCKeditor.Net_2.6.3

    Step 2:
    1. Create a new web application called ‘TestFCK’.
    2. Copy ‘fckeditor’ folder that exists in FCKeditor_2.6.4 zip file to ‘TestFCK’ folder.
    3. Copy \FCKeditor.Net_2.6.3\bin\Release\2.0\FredCK.FCKeditorV2.dll to ‘TestFCK’ bin folder.

    Step 3:
    1. Create a folder named ‘userfiles’ in ‘TestFCK’ folder.
    2. Modify ‘Default.aspx’:

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestFCK._Default" %><%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> 
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    
    <html xmlns="http://www.w3.org/1999/xhtml"> 
    
    <head runat="server"> 
    
        <title></title> 
    
    </head> 
    
    <body> 
    
        <form id="form1" runat="server"> 
    
        <FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server"> 
    
        </FCKeditorV2:FCKeditor> 
    
        </form> 
    
    </body> 
    
    </html>

    Step 4:
    Done!

  • 相关阅读:
    mvc实例
    mvc
    设计模式总结
    作业——《XXX》系统设计时所实现的质量属性战术
    实训第十四天
    实训第十三天
    实训第十二天
    实训第十一天
    实训第十天
    实训第九天
  • 原文地址:https://www.cnblogs.com/sanshi/p/1455895.html
Copyright © 2011-2022 走看看