%
'=========================================================
' 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
<%
Function Checked(value, Checking_String)
If Instr(1,Checking_String,value) <> 0 then
Checked = "checked"
Else
Checked = ""
End If
End Function
%>