<% '========================================================= ' Retrieve the data from editor: ' If you specify your editor ID is "Editor1" ' Retrieve the data from editor: Request.Form("Editor1_HTMLContent") '========================================================= %> ASPEdit : ASP Example

Simple Configuration

This example show you the Simple Configuration of editor.

<% dim content content ="Easy to Install, Easy to Use
" Dim editor Set editor = New ASPEdit editor.ID = "Editor1" editor.Text = content editor.FilesPath = "ASPEdit_Files" editor.ImageGalleryPath = "/Uploads" editor.MaxImageSize = 50 editor.AutoConfigure = "Minimal" 'editor.Template= "Bold,Italic,Underline" 'editor.StyleSheetPath = "/grey2.css" 'editor.Width = 740 'editor.Height = 240 editor.Draw() 'Retrieve the data from editor: Request.Form("Editor1_HTMLContent") %>