Explain How to bind the controls(best practice) comboboxes to the data in the dataset?

Submitted by: Administrator
DropDownList1.DataSource=Myds;
DropDownList1.DataTextField = "FieldName";
DropDownList1.DataValueField = "FieldName";
Submitted by: Administrator

Read Online ADO.NET 2.0 Job Interview Questions And Answers