I am working with an ASP.NET MVC application.
There is a requirement that a user can select an item from a ListBox that can contain more than 30,000 entries.
Is there a dynamic way to populate the contents of this ListBox with an Ajax call - which will work well?
Would it be better to just populate the ListBox control on the server and then wait for the user until the page is displayed with 30,000 entries?
Would it be better to work if I made some jQuery solution?
Any suggestions on the most effective solution to this scenario (without changing the client’s requirements :-))?
source
share