Examples
Editor inside jQuery tabs
This example demonstrates how to render a rich text editor control inside of jQuery tabs.
Demo Code:
<% Dim rte,rte2,rte3 Set rte=new RichTextEditor rte.Name="Editor1" rte.Width="720px" rte.Height="300px" rte.Skin="officexpsilver" rte.Toolbar="email" rte.MvcInit() Set rte2=new RichTextEditor rte2.Name="Editor2" rte2.Width="720px" rte2.Height="300px" rte2.Skin="office2003blue" rte2.Toolbar ="email" rte2.MvcInit() Set rte3=new RichTextEditor rte3.Name="Editor3" rte2.Width="720px" rte2.Height="300px" rte3.Skin="office2010blue2" rte3.Toolbar="email" rte3.MvcInit() %>