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

Get the Html Result

This example shows how to extract the html content created by the ASPEdit.



<% dim result 'get data from the first editor result = Request.Form("Editor1_HTMLContent") result = result + "

" 'get data from the second editor result = result + Request.Form("Editor2_HTMLContent") Response.Write result %>