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

Positioning Images Example

This example shows you how easy it can be to Wrap text around images, Set images absolute position and
Specify images stacking order with the help of ASPEdit.

<% dim content content ="

Put your images 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 = "ImageFocus" '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 %>