I have 3 dropdown in my view page. @HTML.Dropdownlistfor().My dropdown items are in database.
The dropdown items are :
id name
0 SELECT
1 A
2 B
3 C
My requirements are:
1)When my 1st dropdown selected value is( A ),Then 2nd and 3rd dropdown only show (SELECT , B ,C).
2)Now my 1st dropdown change Selected Value( A ) into (SELECT),Then 2nd dropdown show( (SELECT,A , B ,C).
How to implement this concept .