Reputation: 6762
Do we have any Rich Textbox/Textarea options in MVC3 or do we need to use jquery RichTextbox plugins?
Upvotes: 4
Views: 9346
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
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