Cute Editor for ASP.Net and Html5 support

Last post 05-07-2013, 12:00 PM by Kenneth. 3 replies.
Sort Posts: Previous Next
  •  05-06-2013, 6:42 AM 77354

    Cute Editor for ASP.Net and Html5 support

    Hi,

    Does Cute Editor for ASP.Net support Html 5? 

    Filed under: ,
  •  05-06-2013, 12:14 PM 77357 in reply to 77354

    Re: Cute Editor for ASP.Net and Html5 support

    Hi saliniashok,
     
    We have a new version editor RichTextEditor 8.0, it support html5 now, you can try it on http://www.richtexteditor.com/demo/
     
    Demo download url: http://www.richtexteditor.com/download/richtexteditor.rar 
     
    Regards,
     
    Ken 
  •  05-07-2013, 6:15 AM 77369 in reply to 77357

    Re: Cute Editor for ASP.Net and Html5 support

    I have used CuteEditor_for_NET6 for integrating the CuteEditor to my ASP.NEt application. I used the folder called 

    CuteSoft_Client and the dll called CuteEditor.dll. Now how can i integrate the above editor to the existing ASP.Net application. Can you provide

    the various steps for this?

     

     

  •  05-07-2013, 12:00 PM 77371 in reply to 77369

    Re: Cute Editor for ASP.Net and Html5 support

    Hi saliniashok,

     

    You can refer to the full steps at http://www.richtexteditor.com/document/scr/html/deployment.htm

     

    1. Install the assembly

    Copy the following files to your application bin folder.

    • richtexteditor.dll
    • NetSpell.SpellChecker.dll
    • richtexteditor.lic

    The "richtexteditor" folder and all files it contains should be deployed to the application directory of your website.

    2. Add Uploader httpModule to web.config's httpModules list

    To allow RichTextEditor to upload big files, you need to add Uploader HttpModule to your application.

    IIS 5.0, 6.0 and IIS 7.0 Classic mode

    CopyCode imageCopy Code
    <configuration>
      <system.web>
        <httpModules>
          <add name="UploadModule" type="RTE.UploadModule,RichTextEditor"/>
         </httpModules>
      </system.web>
    </configuration>

    IIS 7.0 Integrated mode

    CopyCode imageCopy Code
    <configuration>
      <system.webServer>
        <modules>
          <add name="UploadModule" type="RTE.UploadModule,RichTextEditor"/>
        </modules>
      </system.webServer>
    </configuration>

    3. Using the Editor in a Web Form

    a. Register RichTextEditor control in your page

    <%@ Register TagPrefix="RTE" Namespace="RTE" Assembly="RichTextEditor" %>

    b. Insert a RTE instance into the page and use Editor.Text property to load content into the RTE.

    <RTE:Editor id="Editor1" Text="Type here" runat="server" />

    Regards,

     

    Ken 

View as RSS news feed in XML