How do you populate a combo box when another combo box is choosen?
For example, there is two combo box: Parish and Region. When I chose one of the Parish, it would populate the Region combo box. How would I do this?
Thanks,
Don
Re: How do you populate a combo box when another combo box is choosen?
use javascript to control this client side, or if you dont know javascript you could do it with asp but this would mean posting back every time the first combo box changes.
.Net would be a good bet as it does this easily.
Re: How do you populate a combo box when another combo box is choosen?
Here is a link to a script that I've used in the past, which can be used in conjunction with asp to load the option lists from a db.
http://www.javascripttoolbox.com/lib/dynamicoptionlist/
Re: How do you populate a combo box when another combo box is choosen?
Quote:
Originally Posted by aconybeare
Cool, I'll use this in future projects. Thanks!