w3HtmlSubmit

Syntax   Parameters   Example Programs   Example

w3HtmlSubmit inserts a submit button into the form. When the user presses this button, the form is returned to the calling program. Like any other prompt, it can return a name,value pair. You can put several different submit buttons on a form, giving them the same name but different values to provide the user with a button bar.  

Syntax  

call w3HtmlSubmit  (Name , Value , Options )  

Parameters

name

In

The name you want to give this button.

value

In

The value that is placed in name if the user presses this submit button. This value is also the word(s) printed on the face of the button.

options

In

Any extra HTML options you want to give this button.

Example Programs

receivedata

w3Admin.w3Apps.create

FrameTest

Ihello

selectTest

Example

  call w3HtmlSubmit("ButtonName", "MyButton", "onClick()")

     generates the following HTML:

     <input type="submit" name="ButtonName" value="MyButton" onClick()>