Hi,
I am creating a page that has two dropdowns. One drop down needs to change dynamically depending on the selection made in the other.
So Dropdown2 values depend on dropdown1 selection. To do this I am trying to add code to the Dropdown1_SelectedIndexChanged event.
The data comes in from Access. Both dropdowns are databound using asp accessdatasource declarative tags.
So when I handle the _SelectedIndexChanged event do I need to programmatically create another accessdatasource object and start all over? Or can I use the accessdatasource object that was created declaratively?
Thanks.