I’m using DropDownList within my WebApplication. I need to keep additional piece of information with each Item on list. How can I achieve this?
I’m using DropDownList within my WebApplication. I need to keep additional piece of information
Share
In HTML a drop down is represented by the
<select>element which is a collection of<option>. Eachoptionhas a value and text. That’s all. So keep the additional information in your data store and use the value of the selected element to query it when needed.