The following guide shows the steps to implement a CuteEditor for .NET Control into ASP.NET applications. If you haven't downloaded the software, please download it from here.

Copy the following files to your application bin folder.


The "CuteSoft_Client" folder and all file it contains should be deployed to http://{your site}/{your application}/ on your web site.
If you want to deploy CuteEditor Client file to a different location, please check the developer's guide.


To allow CuteEditor to upload big files, you need to add Uploader HttpModule to your application.
IIS 5.0, 6.0 and IIS 7.0 Classic mode
<configuration>
<system.web>
<httpModules>
<add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor"/>
</httpModules>
</system.web>
</configuration>
IIS 7.0 Integrated mode
<configuration>
<system.webServer>
<modules>
<add name="CuteEditor.UploadModule" type="CuteEditor.UploadModule,CuteEditor"/>
</modules>
</system.webServer>
</configuration>
At the top of your ASP.NET page, add the following code
<%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
<CE:Editor id="Editor1" runat="server" />
© 2003 - 2012 CuteSoft.Net. All rights reserved.