I'm new to MVC and trying to use Rich Text Editor.
I'm lost with third step.
3. Using the Editor in a MVC page
a. Register RichTextEditor control in MVC page and use Editor.LoadFormData method to load content into the RTE
Private Editor1 As New Editor(HttpContext.Current, "Editor1")
Protected Overloads Overrides Sub OnInit(e As EventArgs)
MyBase.OnInit(e)
Editor1.LoadFormData("Type Here...")
Editor1.MvcInit()
End Sub
b. Insert a RTE instance into the page
<%= Editor1.MvcGetString() %>
How do you register a control in a MVC page?