page loading slow

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

In my page there is 4 dropdown list boxes.when page loading that time i am
loading the nearly 3000 items array. so its taking too much time to load.

is it other way fill up the dropdown list array items?

can i make the array itesm into xml file and bind the dropdown list? is it
possible?

thanks
bala
 
Bala:

3000 items might take some time just to get over the network. You might look
at turning off ViewState for the control as this might cut the size of the
page in half.
 
Bala,

What datasource are you using? Is it an ArrayList, if so look at the
obejcts and see if they bigger than they need to be.

MattC
 
3000 items might take some time just to get over the network. You might
look at turning off ViewState for the control as this might cut the
size of the page in half.

More to the point, is anyone ever going to look through 3000 items, even
split over four controls? That's way too much.

Consider sending less info to the page. That much info is no good for
the end user.
 

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

Similar Threads

View State 6
anyone good with javascript! 1
Dropdown List Value 2
Gridview question 3
Connections not closing and display slow. 4
z-index not working 2
How to store list 2
Hiding rows in an ASP.NET table 2

Back
Top