AddHtmlFormInput method

This method constructs data string for sending to server by POST method. The string is keeped in the HtmlForm property.

AddHtmlFormInput inputname,datastring

Parameters

inputname
The name of input field
datastring
Value of input form.

Notes

This method emulates HTML html input fields like
<INPUT name="inputname" value="datastring">
To prepare the form data you should call this method one time for every INPUT tag in the HTML document. The method performs url encoding, if necessary.

Example

See in the HtmlForm method.