How to populate drop-down boxes?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know how to insert text boxes and drop-down boxes etc., but how do you get
the lists to populate a drop-down box? I would like one with major us Cities,
a drop-down box for State, a drop-down box for Month, one for Day and one-for
Year.
Thanks.
 
You'd have to type them in yourself in form field properties.


| I know how to insert text boxes and drop-down boxes etc., but how do you get
| the lists to populate a drop-down box? I would like one with major us Cities,
| a drop-down box for State, a drop-down box for Month, one for Day and one-for
| Year.
| Thanks.
 
you can do it with the frontpage database results wizard, but you'd still need to
enter the data into a database such as MS Access.
 
insert each item one at a time

<select name=country>
<option>Australia</option>
<option> Austria</option>
.....
<option>New Zealand</option>
</select>
etc etc
 
Exactly, where do I put this code?

Andrew Murray said:
insert each item one at a time

<select name=country>
<option>Australia</option>
<option> Austria</option>
.....
<option>New Zealand</option>
</select>
etc etc
 
Back
Top