Kurkula
Kurkula

Reputation: 6762

Rich Text Area in MVC3

Do we have any Rich Textbox/Textarea options in MVC3 or do we need to use jquery RichTextbox plugins?

Upvotes: 4

Views: 9346

Answers (2)

Charandeep Singh
Charandeep Singh

Reputation: 972

ASP.NET MVC has nothing to do with Rich TextArea. You will need JavaScript/jQuery for it. I would recommend using jHtmlArea

Upvotes: 6

Darin Dimitrov
Darin Dimitrov

Reputation: 1038770

You need to use plugins. ASP.NET MVC is a server side framework which allow you to spit HTML. And in HTML you have the <textarea> tag. That's where the ASP.NET MVC framework role ends. If you want to make something more out of this textarea tag you need client scripting => so go ahead and pick your favorite WYSIWYG editor. There are lots of them.

Upvotes: 4

Related Questions