I have 2 Dropdown(say "DD1", "DD2") and 1 Listbox(say "LB") in my web form,
value of the 3 controls depend on each other.
"LB1" is dependent on "DD2" value, "DD2" is dependent on "DD1" value.
I want that if user selects "LB1" without selecting "DD2", it should give a message that "please select DD2 first"
similarly if user Selects "DD2" without selecting "DD1", it should give a msg that "Please select DD1 first" ,using ASP.NET C#
How to achieve this.
Please reply