I have an SQLDataSource consisted of 3 columns:
- A - a value, numeric
- B - a name, text
- C - a comment, large text
Also there is a DropdownList control with its
DataValueField of A column - to be stored in the database after form submission
DataTextField of B column - display purpose for the DropdownList Control
Now what I want to do is:
upon the selection change of this DropdownList control, I want to change another Label's text into its corresponding
C column - so that the more detailed comments or explanations will be given upon user's selection of the item
How do I do this?
Thank you @Nate for the edits :)