Html.Obout(new Obout.Mvc.HTMLEditor.Editor("editor1", Page)
{
Appearance = Obout.Mvc.HTMLEditor.Editor.AppearanceType.lite,
Height = 380, // set the height
Submit = false, // don't show 'Submit' button
ShowQuickFormat = false, // don't show 'Quck formatting' panel
Content = content1 // initial content
});
Html.Obout(new Obout.Mvc.HTMLEditor.Editor("editor2", Page)
{
Appearance = Obout.Mvc.HTMLEditor.Editor.AppearanceType.lite,
Height = 380, // set the height
Submit = false, // don't show 'Submit' button
ShowQuickFormat = false, // don't show 'Quck formatting' panel
Content = content2 // initial content
});