Click here to Skip to main content
15,888,816 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am using ASP.net(C#) and Sql Server 2005.I have 3000 datas in my database table.And I need to populate these datas in a web page.I using aspAjax:ComboBox and dropdownlist and all.But the Problem is website become slow.Which is the fastest tool to populate these datas..Thanks In Advance
Posted

Are you seriously suggesting that you are loading a combobox (the little, dumb thing with a textbox and a drop-down list) with 3,000 items? And that you expect the user to choose from these the one item he requires?

Have you actually tried to use your interface in anger? Because "anger" is probably the emotion it is going to invoke in the user...

Stop, and rethink your interface design: it takes a long time to load a huge amount of data into a combo box for a reason: it's not intended to hold huge amounts of data...
 
Share this answer
 
Comments
Menon Santosh 17-Jul-13 6:27am    
i agree with you
All the controls have different purpose and functionality.The fastest solution is to fill control(e.g. gridview) using SqlDataReader . Also refine your logic in order to reduce the data that gets loaded.

Regards..:laugh:
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900