Is Data Binding for Drop Down box slow?

  • Thread starter Thread starter Raghavendra Narayana
  • Start date Start date
R

Raghavendra Narayana

Project is on ASP.NET+VB.NET.
We are using many binded drop down boxes in the project.
Page display is slow, is this because of binding of data?
What are the alternate approaches please.

Thanks,
Raghavendra Narayana
 
Raghavendra Narayana said:
Project is on ASP.NET+VB.NET.
We are using many binded drop down boxes in the project.
Page display is slow, is this because of binding of data?
What are the alternate approaches please.

Binding data is fast, but fetching it from the database is slow.

Are you running a query for each drop down, each time you render the page?

David
 
Thanks for time.

We are querying it once, filling it to a DataSet, using
everytime from the DataSet.

Thanks,
Raghavendra Narayana
 
Back
Top