Sending the Data
The HTML <form> tag has an action attribute that you
can use to specify a URL that defines where to send the data when
you click Submit. Use /znvsoa/dsicmds as
the action attribute.
Within the <form> tag, the first <input> tag must be a hidden
tag that defines the command to be used to process the form, for example:
<form method="post" name="NetView"
action="/znvsoa/dsicmds" />
<INPUT TYPE=HIDDEN VALUE="?mytest" NAME="COMMAND">
<h3>This form sends an e-mail to IBM. </h3>
Name:<br>
<input type="text" name="name"
value="yourname" size="20"><br>
<br>Mail:<br>
<input type="text" name="mail"
value="yourmail" size="20">
<br>
Comment:<br>
<input type="text" name="comment"
value="yourcomment" size="40">
<br><br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
<hr>
</form>