--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/Forums.aspx/asp-net/200911/1
You don't load 300,000 rows into a dropdown list. You don't even load
that amount into a Windows form combo box either.
What user would want to scroll down 299,999 entries to get to the
300,000 one or scroll up and down any amount of entries in that situation?
You use a listview control giving the user the ability to load subsets
out of 300,000, like 150 at a time using some kind of alphabetical or
numerical sequence they would enter to load the listview at the start
sequence given to load from the database table.
On the other hand, an HTML select tag just uses the first key pressed to
locate the first entry that match this character. On the second key, it will
locate other entries beginning by this other character, you'll have to press
the same key twice to be on entry #2 that begins with this same character
etc...
It makes selecting by typing in a huge list worse than in a windows
application.
--
Patrice
"aspfun via DotNetMonster.com" <u53138@uwe> a �crit dans le message de
groupe de discussion : 9edc538acde26@uwe...
you should either switch to a paging grid, or switch to a "suggests"
ajax control. see the ajax control toolkit or jQuery plugins
-- bruce (sqlwork.com)
"CSharpner" <csha...@gmail.com> wrote in message
news:99cd92bf-7b99-4a89...@j9g2000vbp.googlegroups.com...
Why "Access combo box"? It's about ASP.NET application with Access as
a back-end