Add custom buttons
This example shows you how easy it can be to add your own functions to the ASPEdit with the help of ASPEdit extended functionalities.
<% 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 'CustomAddons 'editor.CustomAddons = "
" editor.CustomAddons = "
Custom button
" editor.Draw() ' Request.Form("Editor1_HTMLContent") get the data from other page %>
<%=editor.Text%>