How to populate drop-down boxes?

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.
 
?

=?Windows-1252?Q?Rob_Giordano_\=28aka:_Crash_Gordo

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.
 
A

Andrew Murray

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.
 
A

Andrew Murray

insert each item one at a time

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

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top