3
Answers

Dropdownlist Performance issue while binding more than 15000

chetan tembhre

chetan tembhre

11y
3.3k
1
Hello,

While binding more than 15000 rows into dropdownlist then page is hanged up. I am using the mentioned below code for this.

ddlList1.DataSource = ds.Tables[0];
ddlList1.DataTextField = "EmpID";
ddlList1.DataValueField = "EmpName";
ddlList1.DataBind();


Can anyone please help me for trouble out this problem.
Answers (3)