Hello,
I am facing a strange issue with submitting data of a grid. Here is how the scenario looks like
There is a grid, with first column having check box to select a certain row. There's a button, on clicking takes all the selected rows and passes on to a MVC controller action - using Ajax Post.
This action, calls a server method that submits all these records to db server as a List<>
The issue is - this all works fine when 39 records are selected but throws up "Internal server error" when more than 39 records are selected.
Note: The number of columns are about 20, no paging in grid, the grid has only 3 columns editable out of 20 and each row is calculated to allow the edits.
Am I missing anything, which is causing Internal server error !!! Is there a problem with grid or my code somewhere....this issue with number of records seems strange.
I am facing a strange issue with submitting data of a grid. Here is how the scenario looks like
There is a grid, with first column having check box to select a certain row. There's a button, on clicking takes all the selected rows and passes on to a MVC controller action - using Ajax Post.
This action, calls a server method that submits all these records to db server as a List<>
The issue is - this all works fine when 39 records are selected but throws up "Internal server error" when more than 39 records are selected.
Note: The number of columns are about 20, no paging in grid, the grid has only 3 columns editable out of 20 and each row is calculated to allow the edits.
Am I missing anything, which is causing Internal server error !!! Is there a problem with grid or my code somewhere....this issue with number of records seems strange.