Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

populating dropdown based upon selection in other dropdown

Status
Not open for further replies.

arkadia93

Programmer
Oct 19, 2006
110
GB
How in ASP do you populate a dropdown based upon the selection made in
another dropdown? Here is my current dropdown :

<select name="Enet" ID="Enet">

<option value="">all</option>
<option value="Enet" <%if request("Equanet")="Enet" then
response.Write "selected" end if%>>enet</option>
<option value="PCWB" <%if request("Enet")="PCWB" then
response.Write "selected" end if%>>pcwb</option>
</select>

I need to change this so that upon selecting one of these options, the
second dropdown gets populated with values dependent on what was
selected.
 
did you take a look at the FAQs section of this forum??...

look for dynamic lists

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top