Dear , Programmers .
How to populate a combobox on the selection of another combobox. In asp.net
For example
• In combobox1 values “Cars” in combobox2 will be “BMW,Toyota,Nissan etc”
• In combobox1 values “Fruits” in combobox2 will be “Mango,apple,Banana etc”
But it should be from database

Hussain AfridiPosted Nov 6, 2014, 6:22 AM
Ch.Smrutiranjan ParidaPosted Nov 4, 2014, 1:37 AM
Riddhi ValechaPosted Nov 4, 2014, 12:37 AM
On Page_Load event, populate the combobox-1, using Datatable.
i.e. Get data from back-end in DataTable.
ComboBox1.DataSource = DataTable;
------
On SelectIndexChanged event on combobox one, populate the other combo box.