[0001]
[0002]
[0003]
[0004]
[0005]
[0006]
[0007]
[0008]
[0009]
[0010]
[0011]
[0012]
[0013]
[0014]
[0015]
[0016]
[0017]
[0018]
[0019]
[0020]
[0021]
[0022]
[0023]
[0024]
[0025]
[0026]
[0027]
[0028]
[0029]
[0030]
[0031]
[0032]
[0033]
[0034]
[0035]
[0036]
[0037]
[0038]
[0039]
[0040]
[0041]
[0042]
[0043]
[0044]
[0045]
[0046]
[0047]
[0048]
[0049]
[0050]
[0051]
[0052]
[0053]
[0054]
[0055]
[0056]
[0057]
[0058]
[0059]
[0060]
[0061]
[0062]
[0063]
[0064]
[0065]
[0066]
[0067]
[0068]
[0069]
[0070]
[0071]
[0072]
[0073]
[0074]
[0075]
[0076]
[0077]
[0078]
[0079]
[0080]
[0081]
[0082]
[0083]
[0084]
[0085]
[0086]
[0087]
[0088]
[0089]
[0090]
[0091]
[0092]
[0093]
[0094]
[0095]
[0096]
[0097]
[0098]
[0099]
[0100]
[0101]
[0102]
[0103]
[0104]
[0105]
[0106]
[0107]
[0108]
[0109]
[0110]
[0111]
<!DOCTYPE html>
<!--
CGIUTL.C Usage Example
Submits example DCL procedure script WASD_ROOT:[CGI-BIN]CGIUTL_EXAMPLE.COM
23-DEC-2003  MGD  keeping up with the times :^)
29-JAN-2000  MGD  duplicate checkbox field names
13-FEB-1999  MGD  add quotes to subject
07-FEB-1999  MGD  initial
-->
<html>
<head>
<title>CGIutl Usage Example</title>
</head>
<body>
<h2><u>CGIutl Usage Example</u></h2>

<form method="POST" action="/cgi-bin/cgiutl_example">
<input type="hidden" name="SUBJECT" value="&quot;CGIutl&quot; Usage Example">

<table cellspacing="0" cellpadding="5" border="0">

<tr><th align="right" valign="top">Organisation:</th><td>
<input type="text" size="30" name="ORGANISATION" value="(anonymous)">
</td></tr>

<tr><th align="right" valign="top">Sector:</th><td>
<select name="SECTOR">
<option value="other" selected>other
<option value="Manufacturing">Manufacturing
<option value="Finance">Finance
<option value="Service">Service
<option value="Defence">Defence
<option value="Government">Government
<option value="Publishing">Publishing
<option value="Internet">Internet
</select>
</td></tr>

<tr><th align="right" valign="top">Architecture:</th><td>
<input type="checkbox" name="ARCHITECTURE" value="Alpha">Alpha
<input type="checkbox" name="ARCHITECTURE" value="IA64">IA64
<input type="checkbox" name="ARCHITECTURE" value="VAX">VAX
</td></tr>

<tr><th align="right" valign="top">VMS Version:</th><td>
<!-- this field name deliberately contains a space -->
<input type="checkbox" name="VMS&nbsp;VERSION" value="8.n">8.n
<input type="checkbox" name="VMS&nbsp;VERSION" value="7.3">7.3
<input type="checkbox" name="VMS&nbsp;VERSION" value="7.2">7.2
<input type="checkbox" name="VMS&nbsp;VERSION" value="7.1">7.1
<input type="checkbox" name="VMS&nbsp;VERSION" value="7.0">7.0
<input type="checkbox" name="VMS&nbsp;VERSION" value="6.2">6.2
<input type="checkbox" name="VMS&nbsp;VERSION" value="6.1">6.1
<input type="checkbox" name="VMS&nbsp;VERSION" value="6.0">6.0
<input type="checkbox" name="VMS&nbsp;VERSION" value="5.n">5.n
</td></tr>

<tr><th align="right" valign="top">Comments:</th><td>
<textarea name="COMMENTS" rows="4" cols="64">
</textarea>
</td></tr>

<tr><th align="right" valign="top">Name:</th><td>
<nobr>
<select name="TITLE">
<option value="Mr" selected>Mr
<option value="Ms">Ms
<option value="Mrs">Mrs
<option value="Dr">Dr
</select>
<input type="text" size="30" name="NAME" value="(anonymous)">
</nobr>
</td></tr>

<tr><th align="right" valign="top">Email:</th><td>
<input type="text" size="40" name="EMAIL" value="(optional)">
</td></tr>

<tr><th></th><td>
<input type="submit" value=" Mail Survey ">
<input type="reset" value=" Reset ">
</th></tr>

</table>

</form>

<p><font size="-1"><i>
<b><u>NOTES</u></b>

<br>If enabled the survey is mailed to SYSTEM,
&nbsp;otherwise just provides example output.

<br>This form:&nbsp;
<a href="/wasd_root/src/misc/cgiutl_example.html?httpd=content?type=text/plain">
WASD_ROOT:[SRC.MISC]CGIUTL_EXAMPLE.HTML</a> 

<br>The script:&nbsp;
<a href="/wasd_root/src/misc/cgiutl_example.com">
WASD_ROOT:[SRC.MISC]CGIUTL_EXAMPLE.COM</a>
&nbsp;(processes the request)

<br>The utility:&nbsp;
<a href="/wasd_root/src/misc/cgiutl.c">
WASD_ROOT:[SRC.MISC]CGIUTL.C</a>
&nbsp;(contains description and usage information)

</i></font>

</body>
</html>