<% '========================================================= ' 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

General Example

This example shows the general features of the ASPEdit.

<% dim content content = "Type here..." 'Create a new editor class object Dim editor Set editor = New ASPEdit 'Set the ID of this editor class editor.ID = "Editor1" 'Set the initial HTML value of editor control editor.Text = content editor.FilesPath = "ASPEdit_Files" editor.ImageGalleryPath = "/Uploads" 'You can hide the logo by set ShowLogo to true 'editor.ShowLogo = "false" 'editor.StyleSheetPath = "/grey2.css" 'editor.Width = 740 'editor.Height = 200 editor.Draw() ' Retrieve the data from editor: Request.Form("Editor1_HTMLContent") %>