Dynamic Combo driven

  • Thread starter Thread starter Al
  • Start date Start date
A

Al

hi,I am using asp.net(vb) I am trying to create 3 combo
boxes which are dependable on each other.
when comb1 is selected, it shows the comb2 data based on
the selection in combo1 and when combo2 is selected,
combo3 show data based on comb2 selection.
in summary, I will end up having 3 combo boxes. I am not
sure how to build such taks, I would appreciate your
assitance.
thanks
Al
 
Hi Al,

You need to set the AutoPostback property of the combo's
to True. Next on the SelectedIndexChanged event of the
first combo, place the code that's needed to fill up the
2nd combo. Do the same for the 2nd combo.

HTH.

Kaustav Neogy.
 
Back
Top