zoukankan      html  css  js  c++  java
  • Cute Editor for .NET v6.4

    控件名称:Cute Editor for .NET v6.4

    官方网站:http://cutesoft.net/

    官方下载:http://cutesoft.net/Downloads/

    最近更新日期:2009823(星期三)

    说明:.NET平台最强大的所见即所得HTML编辑器(The most powerful WYSIWYG browser-based Online HTML Editor for ASP.NET)博客园也有用到此编辑器(好像已经是新版本了)。国内见得最多的版本目前是v6.0。新版本6.4不仅继承原有功能,而且增加了很多实用功能,并且很好的支持IE6IE7IE8,和Firefox3.5 等主流浏览器,依然提供.NET FrameWork 1.12.0两种版本(即涵盖1.1——3.5所有版本),并且国际化做得比以前的版本更完善(提供约30种不同语言)。

    部署步骤(基本不变,.NET1.12.0版本部署基本一致):

    1. 安装CuteEditor assembly 文件和license文件(共4个)

    拷贝以下文件到您网站的bin文件夹下

    CuteEditor.dll

    CuteEditor.ImageEditor.dll

    NetSpell.SpellChecker.dll

    CuteEditor.lic license文件)

     

    2.拷贝CuteEditor 客户端文件

    拷贝“CuteSoft_Client”文件夹到您的网站目录下(根目录),大约有4.57MB.NET 2.0版本)。

     

    3.增加httpModule 到您的web.config

    1IIS 5.0, 6.0 IIS 7.0 标准模式(Classic mode

    <configuration>
      
    <system.web>
        
    <httpModules>
          
    <add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor"/>
         
    </httpModules>
      
    </system.web>
    </configuration>

    2IIS 7.0集成模式(Integrated mode

    <configuration>
      
    <system.webServer>
        
    <modules>
          
    <add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor"/>
        
    </modules>
      
    </system.webServer>
    </configuration> 

    4.添加 CuteEditor 到您的页面(为了方便,先将CuteEditor.dll添加到您的VS工具栏中)

    拖动工具栏中的CuteEditor控件至您的页面,CuteEditor会自动注册到您的页面。

    如下:

    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %> 
    <CE:Editor id="Editor1" runat="server" />

    5.取值方法

    string strContent = this.Editor1.Text;

    6.效果图:

    //****************************************
      by: Amen cnblogs博客  转载请注明出处
    //****************************************
  • 相关阅读:
    手机比电脑的优势
    Windows XP SP2 下防火墙规则的设置、开发等相关问题
    初识JQuery 实例一
    “周涛、马东、刘伟座谈马季老先生生平艺术生涯”观后感
    Official WPF Samples
    MFC 操作Windows Service,编码遇到的问题。
    WCF RIA Services Code Gallary To Explorer
    Asp.net 得到Cookie中值
    c# 隨機獲得枚舉值
    database link 與 同義詞的了解
  • 原文地址:https://www.cnblogs.com/ucetgg/p/1559781.html
Copyright © 2011-2022 走看看