File: PBWebEasyFormExampleGet.html
Size: 860
Date: Sat, 08 Dec 2007 15:37:10 +0100
Type: html
<html>
<head>
<title>Form Example - GET Method</title>
</head>
<body>
<h1>Form Example - GET Method</h1>
<form action="/cgi-bin/pwe.exe/pb9webeasy/cgienv/of_printcgienv" method="get">
  <p>Text:<input name="oneline" type="text" size="30" maxlength="30"></p>
  <p>Listbox:<select name="listbox" size="1">
      <option>HTML</option>
      <option>HTTP</option>
      <option>CSS</option>
    </select>
  </p>
  <p>Radio Buttons:<br />
    <input type="radio" name="rb_1" value="PB 9">PowerBuilder 9<br />
    <input type="radio" name="rb_1" value="PB 10.5" checked>PowerBuilder 10.5<br />
    <input type="radio" name="rb_1" value="PB 11">PowerBuilder 11<br />
  </p>
  <p>
    <input name="b_submit" type="submit" value="Submit" /> <br />
    <input name="b_click" type="button" value="Alert" onclick="javascript:alert('Clicked!');" />
  </p>
</form>
</body>
</html>