hi to all,
Here i'm bind the value from database to drop-down list without using VIEWDATA.
here i done using view data to bind the database value. Anyother method to bind value from
database to drop-down list.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vasu GadhiyaPosted Jul 24, 2014, 1:41 AM
// First Bind DataSet having name ds
comboBox1.DataSource = ds.Tables[0]; // Your Table
comboBox1.DisplayMember = "Id"; //Column name
-----