Category "datalist"

create a select box in which data is populated from selecting another select box and it is editable

I have created two select box. in both, fetching data from database. By selecting first select box the second select box gets auto populated. What I want to do

How to bind dynamic DataTable to DataList?

Code behind: DataTable dt = new DataTable(); dt.Columns.Add(new DataColumn("Rego No", typeof(string))); foreach (var item in list) { dt.Columns.Add(new Da

html5 datalist to select only predefined options

I am using HTML5 datalist to allow selection from a large list by autocomplete and filter feature. But I want to allow selection only from predefined options. S