w3HtmlText

w3HtmlText inserts a text box into the form.  

Syntax

call w3HtmlText  (name , value , options )  

Parameters

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.

Example Programs

FrameTest

Ihello

Example

call w3HtmlText("FieldName", "MyValue", "onClick()")

     generates the following HTML:

     <input type="text" name="FieldName" value="MyValue" onClick()>