In an ASP.NET Web application, I have a page with an update panel. In this updatepanel, the user can click on an icon to add or remove controls to a repeater.
I put a breakpoint in the Page.Load of the updatepanel and checked the HttpContext.Current.Request.ContentLength every time the updatepanel is used. The request increases in size every time a request is sent.
The funny thing is that it even increases in size when the user removes the controls (so the page becomes 'lighter' again).
In the end, this gives me the following error: maximum request length.
The solutions around the web suggest to increase the maximumRequestLength. This is not an option because I'll reach the maximum anyway.
I've even noticed the request length increases exponentially.
Anyone had the same experience?