Click here to Skip to main content
15,881,882 members
Articles / Web Development / ASP.NET
Tip/Trick

Rich Text Editor with ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.00/5 (13 votes)
11 Sep 2012CPOL2 min read 215.9K   13.3K   24   36
How to implement free RichText editor into ASP.NET website

Introduction

As we know, ASP.NET lacks a control that we need most, RichText editor.

If you are trying to create an application or website with Admin Panel or Blog or Forum Website or some such project for Web in ASP.NET platform, we need RichText Editor.

To overcome this, we can use many open source JavaScript based editors, like Tiny MCE, FCKEditor, etc.

Content

In this tip, we would learn how to Implement Free RichText Editor into ASP.NET website. We are using TinyMCE editor here.

We are using TinyMCE, which is one of the most popular and Open Source projects. Download the latest version of TinyMCE from download page, and extract the zip file.

Image 1

Browse the extracted location and go to ..\tinymce_3.5.6\tinymce\jscripts folder.

Now copy the tinymce folder from the above location to your solution in Visual Studio.

Image 2

Add a page where you want to implement RichTextbox and design the Page.

Image 3

Now let's move to the topic on how to add TinyMCE in Page and Richtext box control placed for Content of Blog in the above sample.

Insert JavaScript file tiny_mce.js in Web Page and also initialize this function.

Place this code into head section:

HTML
  <script type="text/javascript" 
src="tiny_mce/tiny_mce.js"></script>
    <script type="text/javascript" language="javascript">
        tinyMCE.init({
            // General options
            mode: "textareas",
            theme: "advanced",
            plugins: "pagebreak,style,layer,table,save,
            advhr,advimage,advlink,emotions,iespell,inlinepopups",
           
        });
    </script>

Note: You can have so many settings, look in Samples and Help Doc of TinyMCE.

Now run the Page. Look how it looked.

Image 4

Without any additional practice, our TextBox with Multiline turned into RichText Editor.

Now, it's ok as per Requirement. No, when you will send Command to Server, it will return Error like below:

Image 5

We have to add just one line of code in Web.config file and one property in Default.aspx form (Page with Rich Text Editor).

That is:

In web.config:

HTML
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
    <httpRuntime requestValidationMode="2.0"/>
  </system.web>
</configuration>

and in Page directive:

C#
ValidateRequest = "false"
ASP.NET
<%@ Page Language="C#" AutoEventWireup="true" 
CodeFile="Default.aspx.cs" Inherits="_Default" ValidateRequest="false" %> 

Now, you can save the data in database, do postback, retrieve same in Rich Text box and do anything you want.

Conclusion

IT is Jugad. So anything is possible here. Don't worry about things that are not available. Just modify and make use of things that are available. Tiny MCE is one of the most well known and popular Rich Text editors (WYSIWYG).

Reference

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder P.Yar.B Complex
Nepal Nepal
John Bhatt is an IT Professional having interest in Web technology. He is Web Designer, Developer, Software Developer, Blogger and Technology Geek. Currently he writes his Blogs at Blog of P.Yar.B and various other Sites. He is Main author and founder of Download Center.
Contact Him at : Facebook | Twitter | Website | PRB - Blog.

Comments and Discussions

 
Questiongood and easy to intrigartion Pin
pramodraising20-Sep-16 21:41
pramodraising20-Sep-16 21:41 
Questionhow to add the text editor for single line text box? Pin
Member 1124396021-Jan-16 20:59
Member 1124396021-Jan-16 20:59 
AnswerRe: how to add the text editor for single line text box? Pin
John Bhatt6-Jun-16 1:37
professionalJohn Bhatt6-Jun-16 1:37 
QuestionThe Control can't work well in IIS. Pin
Member 113518933-Feb-15 15:06
Member 113518933-Feb-15 15:06 
QuestionProblem with image Pin
Member 1107396810-Sep-14 20:17
Member 1107396810-Sep-14 20:17 
AnswerRe: Problem with image Pin
John Bhatt21-Sep-14 2:31
professionalJohn Bhatt21-Sep-14 2:31 
QuestionProblem with initialization Pin
Lefteris Gkinis31-Mar-14 10:33
Lefteris Gkinis31-Mar-14 10:33 
AnswerRe: Problem with initialization Pin
John Bhatt1-Apr-14 0:21
professionalJohn Bhatt1-Apr-14 0:21 
QuestionHow to bind TinyMCE Rich TextBox to particular text box Pin
sayed farhan10-Dec-13 1:15
sayed farhan10-Dec-13 1:15 
AnswerRe: How to bind TinyMCE Rich TextBox to particular text box Pin
John Bhatt10-Dec-13 22:41
professionalJohn Bhatt10-Dec-13 22:41 
GeneralRe: How to bind TinyMCE Rich TextBox to particular text box Pin
John Bhatt1-Apr-14 0:23
professionalJohn Bhatt1-Apr-14 0:23 
QuestionHow To add Tamil Font. Pin
Maddy selva12-Jun-13 23:43
professionalMaddy selva12-Jun-13 23:43 
AnswerRe: How To add Tamil Font. Pin
John Bhatt10-Dec-13 23:01
professionalJohn Bhatt10-Dec-13 23:01 
QuestionSql Injection Pin
Maddy selva21-Mar-13 20:05
professionalMaddy selva21-Mar-13 20:05 
AnswerRe: Sql Injection Pin
John Bhatt14-Apr-13 20:05
professionalJohn Bhatt14-Apr-13 20:05 
QuestionRE: your post abt rich text box Pin
Member 983287813-Feb-13 4:54
Member 983287813-Feb-13 4:54 
AnswerRe: RE: your post abt rich text box Pin
John Bhatt14-Apr-13 20:03
professionalJohn Bhatt14-Apr-13 20:03 
QuestionLimited tools Pin
deivisvieira15-Jan-13 6:40
deivisvieira15-Jan-13 6:40 
AnswerRe: Limited tools Pin
John Bhatt15-Jan-13 19:30
professionalJohn Bhatt15-Jan-13 19:30 
GeneralThanks Pin
h_salimi4-Dec-12 3:08
h_salimi4-Dec-12 3:08 
GeneralRe: Thanks Pin
John Bhatt4-Dec-12 3:51
professionalJohn Bhatt4-Dec-12 3:51 
QuestionA potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$RichTextBox="<p>TEST!</p>"). Pin
Maddy selva1-Nov-12 0:11
professionalMaddy selva1-Nov-12 0:11 
AnswerRe: A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$RichTextBox="<p>TEST!</p>"). Pin
John Bhatt1-Nov-12 1:17
professionalJohn Bhatt1-Nov-12 1:17 
QuestionRe: A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$RichTextBox="<p>TEST!</p>"). Pin
Maddy selva1-Nov-12 2:38
professionalMaddy selva1-Nov-12 2:38 
AnswerRe: A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$RichTextBox="<p>TEST!</p>"). Pin
John Bhatt1-Nov-12 3:07
professionalJohn Bhatt1-Nov-12 3:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.