navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

States List?

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Microsoft FrontPage Help >> States List?
Page: [1]
 
TLC

 

Posts: 2
From: Niles, MI., USA
Status: offline

 
States List? - 4/16/2001 20:49:00   
I'm not sure even how to ask this one. You see sites where there is a drop down list of states to choose from, then when you click on a state, you get information from that state. such as when you are looking for automobiles. You would select Michigan, then all the autos from Michigan come up for view. How do they do that? What is it called? How can I do that? Any answers would be very appreciated. Thank you
Nancy

 

Posts: 3626
Joined: 11/9/1999
From: Nebraska
Status: offline

 
RE: States List? - 4/16/2001 13:52:00   
What you are describing sounds like the 'results' are coming from a database, using the dropdown list to search the database.

A simpler version of the above would be to use the dropdown list to 'jump' to another page you have built which contains all the information.

The first method is a higher learning curve, but generates pages dynamically from a database. The second method is simpler in how it works, but require more actually work on your part to create all those pages the dropdown jumps to.

If you will provide a little more information of what you want to accomplish, we can possibly head you in the right direction.

Nancy

------------------
Modern Fairy Tale: "And so the prince, determined to find the owner of the glass slipper,launched a home page on the World Wide Web."
Mall of Alliance


(in reply to TLC)
bobby

 

Posts: 11394
Joined: 8/15/1969
From: Seattle WA USA
Status: offline

 
RE: States List? - 4/16/2001 18:38:00   
There is a list exactly as you describe on this website that I built:
http://wassercoatings.com/repbystate.htm

feel free to copy and edit the dropdown menu as you see fit.


(in reply to TLC)
Gil

 

Posts: 7533
From: North Carolina, USA
Status: offline

 
RE: States List? - 4/16/2001 18:57:00   
<select name="State">
<OPTION SELECTED VALUE="">   Select State  
<OPTION VALUE="AK">Alaska
<OPTION VALUE="AL">Alabama
<OPTION VALUE="AR">Arkansas
<OPTION VALUE="AZ">Arizona
<OPTION VALUE="CA">California
<OPTION VALUE="CO">Colorado
<OPTION VALUE="CT">Conneticut
<OPTION VALUE="DC">Wash. DC
<OPTION VALUE="DE">Delaware
<OPTION VALUE="FL">Florida
<OPTION VALUE="GA">Georgia
<OPTION VALUE="HI">Hawaii
<OPTION VALUE="ID">Idaho
<OPTION VALUE="IL">Illinois
<OPTION VALUE="IN">Indiana
<OPTION VALUE="IA">Iowa
<OPTION VALUE="KS">Kansas
<OPTION VALUE="KY">Kentucky
<OPTION VALUE="LA">Louisiana
<OPTION VALUE="MA">Massachusetts
<OPTION VALUE="ME">Maine
<OPTION VALUE="MD">Maryland
<OPTION VALUE="MI">Michigan
<OPTION VALUE="MN">Minnesota
<OPTION VALUE="MS">Mississippi
<OPTION VALUE="MO">Missouri
<OPTION VALUE="MT">Montana
<OPTION VALUE="NE">Nebraska
<OPTION VALUE="NV">Nevada
<OPTION VALUE="NH">New Hampshire
<OPTION VALUE="NJ">New Jersey
<OPTION VALUE="NM">New Mexico
<OPTION VALUE="NY">New York
<OPTION VALUE="NC">North Carolina
<OPTION VALUE="ND">North Dakota
<OPTION VALUE="OH">Ohio
<OPTION VALUE="OK">Oklahoma
<OPTION VALUE="OR">Oregon
<OPTION VALUE="PA">Pennsylvania
<OPTION VALUE="PR">Puerto Rico
<OPTION VALUE="RI">Rhode Island
<OPTION VALUE="SC">South Carolina
<OPTION VALUE="SD">South Dakota
<OPTION VALUE="TN">Tenessee
<OPTION VALUE="TX">Texas
<OPTION VALUE="UT">Utah
<OPTION VALUE="VT">Vermont
<OPTION VALUE="VI">Virgin Islands
<OPTION VALUE="VA">Virginia
<OPTION VALUE="WA">Washington
<OPTION VALUE="WV">West Virginia
<OPTION VALUE="WI">Wisconsin
<OPTION VALUE="WY">Wyoming
<OPTION VALUE=""> 
<OPTION VALUE=""> 
</select>

------------------
Gil Harvey
The Host Factory
Resellers are our speciality
"Is there another word for synonym?"


(in reply to TLC)
Shirley

 

Posts: 3127
Joined: 1/8/1999
From: Omaha, Ne USA
Status: offline

 
RE: States List? - 4/16/2001 20:42:00   
just make all of those caps lower case.

------------------
Shirley
Money Tree Systems


(in reply to TLC)
Gil

 

Posts: 7533
From: North Carolina, USA
Status: offline

 
RE: States List? - 4/16/2001 21:55:00   
quote:
Originally posted by Shirley:
just make all of those caps lower case.


??????????????????????????????????

------------------
Gil Harvey
The Host Factory
Resellers are our speciality
"Is there another word for synonym?"


(in reply to TLC)
Shirley

 

Posts: 3127
Joined: 1/8/1999
From: Omaha, Ne USA
Status: offline

 
RE: States List? - 4/16/2001 22:53:00   
minimum structure requirements of xhtml require elements and attribute names in lower case

------------------
Shirley
Money Tree Systems


(in reply to TLC)
Gil

 

Posts: 7533
From: North Carolina, USA
Status: offline

 
RE: States List? - 4/17/2001 20:16:00   
Right Shirley - I assumed (I know, not a smart thing to do ), an HTML document - did I miss a reference to xhtml?

------------------
Gil Harvey
The Host Factory
Resellers are our speciality
"Is there another word for synonym?"


(in reply to TLC)
TLC

 

Posts: 2
From: Niles, MI., USA
Status: offline

 
RE: States List? - 4/17/2001 20:17:00   
I am still not sure how to use it, but the list is great and I want to thank ALL of you for such a fantastic response. You people are super at trying to help others. I have needed to use this site twice and both times I have been overwhelmed by the response. Again, thank you all and thank you to the site creators.

(in reply to TLC)
Gil

 

Posts: 7533
From: North Carolina, USA
Status: offline

 
RE: States List? - 4/17/2001 20:31:00   
quote:
Originally posted by TLC:
I am still not sure how to use it,

Just cut and past to notepad, then cut and paste to whereever you want the drop down in your form....

------------------
Gil Harvey
The Host Factory
Resellers are our speciality
"Is there another word for synonym?"


(in reply to TLC)
turboguy

 

Posts: 171
From: Beaver Falls PA USA
Status: offline

 
RE: States List? - 4/17/2001 23:24:00   
If you want to look at a different approach to do what you are talking about take a look at one of my sites. The URL is http://www.hydroseedingexperts.com/Find_A_Contractor.htm

------------------
If you are going to think anyway, you might as well think BIG


(in reply to TLC)
Page:   [1]

All Forums >> Web Development >> Microsoft FrontPage Help >> States List?
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts