Currently working with VB.NET/asp.net, I am faced with a page containing a Formview. Within the Insert and Edit templates, there are numerous dropdownlists for both Depts and People. Each of these templates is divided into multiple sections, with around 3 sections allocated for each Dept and People dropdown. The number of depts counts to about 100, while the listing of people is close to 10,000. It has been specified that if the user is uncertain about the Dept, they should be able to choose from the extensive list of 10,000 people in the dropdown.
Due to this setup, the total pagesize exceeds 5MB....I have already had to adjust the default setting
I am looking for recommendations on how to create a dropdown that can handle such a large amount of data without filtering and significantly reduce the overall pagesize. Are there any solutions available through Ajax or Javascript?
Thank you.