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

Table Editing Example

ASPEdit makes it easy to create and edit tables in your web page. Try double click the table and edit it...

<% dim content content ="

Create your table here...

" Dim editor Set editor = New ASPEdit editor.ID = "Editor1" editor.Text = content editor.FilesPath = "ASPEdit_Files" editor.ImageGalleryPath = "/Uploads" editor.MaxImageSize = 50 editor.AutoConfigure = "TableFocus" 'editor.Template= "Bold,Italic,Underline" 'editor.StyleSheetPath = "/grey2.css" 'editor.Width = 740 'editor.Height = 240 editor.Draw() ' Request.Form("Editor1_HTMLContent") Get result from target page %>