Customized Toolbar Example
Developers can personalize the toolbar by playing with Template property (see the example code on side).
<% dim content content = "
Customized Toolbar
" Dim editor Set editor = New ASPEdit editor.ID = "Editor1" editor.Text = content editor.FilesPath = "ASPEdit_Files" editor.StyleSheetPath = "blue.css" editor.ShowBottomBar = false editor.Template="Bold,Italic,Underline,Separator,JustifyLeft,JustifyCenter,JustifyRight" editor.Width = 600 'editor.Height = 200 editor.Draw() ' Request.Form("Editor1_HTMLContent") get the data from other page %>
<%=editor.Text%>