I have a GridView that (in one particular instance) would contain about 5000 rows, each row containing a DropDownList with about 5000 items. Naturally, this takes forever to load and throws and OutOfMemory exception on my box.
No big deal, I thought. I'll just enable paging.
Well, that works fine (for the same gridview) when its bound to other data, but when I bind it to this particular DataSource (the one with 5000 rows) problems arise.
When I first load the GridView with the offending DataSet, page one displays just fine. However, when I click to view page two I get the error:
Error 101 (net::ERR_CONNECTION_RESET): Unknown error.
In Google Chrome.
And the error:
Internet Explorer cannot display the webpage
In IE.
Any thoughts on why this is happening would be greatly appreciated.