Demo5 - Using the Form Wizard     |     home
Example: REQUEST form   |   Example: Modified REQUEST form   |   Example: COMMENT form   |   Example: Modified COMMENT form

Example: Modified REQUEST form
I've modified the Request form from before to include a drop down box
for the STATE field.

To do this. I had to actually create and then publish the form using the FORM WIZARD,
and then while viewing the generated source through a browser, I cut and pasted the
appropriate code from the browser into a 'Build your own web gem'!

(Modified 6/12/2001 to work with Netscape's 4.x browser)

This is the original part of the code that displayed the STATE field:

<tr><td align="left">State:<br>
<input type="text" name="State" size="30" maxlength="100"></td></tr>

And this is what I replaced it with in order to have a drop down selection box:

<tr><td align="left">State:<br><select name="State" size="1">
<option>ALABAMA</option>
<option>ALASKA</option>
<option>CALIFORNIA</option>
<option>FLORIDA</option>
<option>GEORGIA</option>
<option>HAWAII</option>
<option>INDIANA</option>
<option>ILLINOIS</option>
<option>KANSAS</option>
<option>MISSISSIPPI</option>
<option>MISSOURI</option>
<option>NEW JERSEY</option>
<option>NEW YORK</option>
<option>PENNSYLVANIA</option></select></td></tr>



First Name:
Last Name:
Email:
Company:
Address Line 1:
Address Line 2:
City:
State:
Zip:
Phone Number:
Add me to your mailing list