Submitting
When submitting a form containing one or more HTML Rich Text Areas, treat it as if it
were any other form element like <input type='text'> or <textarea>.
For example,
the following HTML Rich Text Area has a HTML name tag set to 'MyHTMLRTA'. When you press 'Submit'
the form is sent off to the tcpIQ web site where the submitted information is retrieved and displayed.
Since we are using Active Server Pages on our server it is possible to display this information
via <% =Response.Write(Request.Form("MyHTMLRTA")) %> Other server side technologies like
ColdFusion or Perl have similar mechanisms to retrieve and display posted information.
|