Summary of the Problem: We have a list box on an old Web Forms (asp.net) page that can pull down thousands of options potentially. The issue is, when a certain size of data is reached any post backs (like clicking the save button) result in the following error:
System.Web.HttpException (0x80004005): Maximum request length exceeded.
How can the page be modified to handle this large volume of data?
Yes, before anyone puts this up as a solution, I am fully aware of the Web.config "dirty fix", and we are not doing it because we want to handle all the data.
Maximum request length exceeded
Also, I have attempted this in the elements with no success:
EnableViewState="false"