State Drop Down List

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

Guest

Hi Everyone: I'm trying to figure out if I can create a drop down list of
states which when a state is picked it shows everyone who lives in that area.

Currently I have Front Page 2002. I'm not a programmer just a simple Front
Page User.

Thanks

Kim
 
A drop down list of states is fairly easy:

<form>
<select name="Select1">
<option value="AK">Alaska</option>
<option value="AL">Alabama</option>
.....
</select>
</form>

<tongue in-cheek>
However, showing everyone who lives in the area might be difficult -
there are several million people living in New York, for example -
that's a lot of names to put on a web page, and if you need photographs
as well ...
</tongue>

Need more information about what you intend to do.
 
However, showing everyone who lives in the area might be difficult -
there are several million people living in New York, for example -
that's a lot of names to put on a web page, and if you need photographs
as well ...
</tongue>


Hey Ron:

Thanks for the tongue in cheek reply :)

I am creating an extremely small list of professionals in my industry so far
there are only 15 in 14 states. I expect it might go up to 60 - 100 across
the US eventually (long term).

Info inlcuded is drop down by State and then it shows City, Name, Phone1,
Phone2, Email, Website.

So if there are two people in GA, I'd like it to display those two names on
a separate page (I think I want it on a diff page).

Does that explain it better?

TIA,

Regards,

Kim Cassidy
 
Would require a Database solution
and simple enough to do with the FP DBRW
(If your host is on a windows server and supports Access and server side scripting - ASP)

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|> However, showing everyone who lives in the area might be difficult -
| > there are several million people living in New York, for example -
| > that's a lot of names to put on a web page, and if you need photographs
| > as well ...
| > </tongue>
|
|
| Hey Ron:
|
| Thanks for the tongue in cheek reply :)
|
| I am creating an extremely small list of professionals in my industry so far
| there are only 15 in 14 states. I expect it might go up to 60 - 100 across
| the US eventually (long term).
|
| Info inlcuded is drop down by State and then it shows City, Name, Phone1,
| Phone2, Email, Website.
|
| So if there are two people in GA, I'd like it to display those two names on
| a separate page (I think I want it on a diff page).
|
| Does that explain it better?
|
| TIA,
|
| Regards,
|
| Kim Cassidy
|
 
Back
Top