I'm not certain that this is possible, but I'd like some opinions on if it is, and if so, how I can go about doing it. Essentially I have a form that looks like this in pseudocode. I know it seems ridiculous on the surface to have a grid with 1000 rows, but there's a real purpose. Yes, I have paging, but some users have indicated they want all records on one page.
<form>
<grid>
<input type="text" />
999 or so more rows
</grid>
</form>
.NET cannot handle 1000 field elements in one http post, so I'm searching for a way to divide the form submission into multiple posts. Separating into multiple grids would not be considered an option. If the consensus is that it isn't possible, that's fine as well.