Examples
Multiple Editors in one page
This example shows how to setup multiple editors on the same page.
Demo Code:
<%
Dim rte
Set rte=new RichTextEditor
rte.Name="Editor1"
rte.Height="200px"
rte.Skin="smartblue"
rte.Toolbar="forum"
rte.MvcInit()
Set rte2=new RichTextEditor
rte2.Name="Editor2"
rte2.Height="200px"
rte2.Skin="smartsilver"
rte2.Toolbar="forum"
rte2.MvcInit()
%>