w3HtmlText inserts a text box into the form.
call w3HtmlText (name , value , options )
|
name |
In |
The name of the form variable for this text box. |
|
value |
In |
The default value of the variable. |
|
options |
In |
Any extra HTML options for this prompt. |
call w3HtmlText("FieldName", "MyValue", "onClick()")
generates the following HTML:
<input type="text" name="FieldName" value="MyValue" onClick()>