FCKeditor - Samples - Posted Data

This page lists all data posted by the form.

<% For Each sForm in Request.Form %> <% Next %>
Field Name   Value
<%=sForm%>
<%=ModifyForOutput( Request.Form(sForm) )%>
<% ' This function is useful only for this sample page se whe can display the ' posted data accordingly. This processing is usually not done on real ' applications, where the posted data must be saved on a DB or file. In those ' cases, no processing must be done, and the data is saved as posted. Function ModifyForOutput( value ) ModifyForOutput = Server.HTMLEncode( Request.Form(sForm) ) End Function %>