My problem is I want to add in a value to a LABEL based on selected value in the DropDownList !!
Example:
tbl_abc
ID Sequence Name
-----------------------------------------------
1 2 Michael
2 3 Jenny
3 4 Max
4 4 Max
5 2 Michael
6 4 Max
7 3 Jenny
8 5 Alice
-----------------------------------------------
ID-(asp:label)
Sequence-(asp:label)
Name-(asp:DropDownList)
-If I choose Max from the DropDownList then the Sequence_label will automatically generate the 4.
-If I choose Michael from the DropDownLst then the Sequence_label will automatically generate the 2.
Can anyone help me to solve this problem??
Thanks in advance !!