w3HtmlPassword

w3HtmlPassword inserts a password text box into the form.

Syntax

call w3HtmlPassword  (Name , Value , Options )  

Parameters

Name

In

Name of the form variable for this password text box.

Value

In

Default value of the variable.

Options

In

Any extra HTML options for this prompt.

 

Example

call w3HtmlPassword("FieldName", "MyPassword", "onClick()")

     generates the following HTML:

     <input type="Password" name="FieldName" value="MyPassword" onClick()>