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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top