How to use Rich Text Editor in MVC
How to use Rich Text Editor in MVC
The Rich Text Editor for ASP.NET MVC is used for HTML editing and markdown editing in an MVC web applications, which provides user interface for creating and formatting the rich text content. The UI component is used in the following real-time applications:
- Create blogs
- HTML email composer
- Discussion forums
- Comments section
The UI control can be incorporated in ASP.NET MVC application with minimum level of configurations. Find the code to render default Rich Text Editor control.
@Html.EJS().RichTextEditor("MVC-RichTextEditor").ContentTemplate(@<div> <p> Content of ASP.NET MVC Rich Text Editor </p> </div>).Render() |
To get started quickly on this control, refer to this demo for full featured Rich Text Editor in MVC or refer to this getting started documentation.