I have several listboxes that get each of their data from a separate stored procedure.
If the user selects an option in 1 listbox, it should filter the other listboxes.
I have done this before by adding logic to the stored procedure, but sometimes it seems to get very long.
Does anyone know of a better way to approach this?
The way I have it setup now is that for each ListBox, I have an ObjectDataSource which calls a method that calls a stored proc in the database to populate the listbox.