Click here to Skip to main content
15,748,559 members

Comments by prakash00060 (Top 64 by date)

prakash00060 15-Nov-19 8:41am View    
have you any other options in asp.net mvc
prakash00060 15-Nov-19 8:41am View    
have you any other options in asp.net mvc
prakash00060 15-Nov-19 4:08am View    
have you any solution
prakash00060 27-Sep-18 8:25am View    
sir my database is very large and requirement is to load all data at a time.
when i load all data it gives error serilization and deserilization limit is exceed.
I set in webconfig
<httpRuntime targetFramework="4.6.2" maxRequestLength="2147483647" executionTimeout="600" />

jQuery.ajax({
url: '@Url.Action("GetCandidateData", "Home")',
type: "POST",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
debugger;
//alert();
$('#tableboot').bootstrapTable('load', JSON.parse(data));
},
failure: function (data) {
debugger;
alert(data.responseText);
},
error: function (data) {
debugger;
alert(data.responseText);
}
});
});
prakash00060 27-Sep-18 4:59am View    
i am not telling about 50000 row in one page or without pagination. I have check only 7000 data is loaded in 250 pagination.Understand the questions. have you any option to manage 50000 data at a time with pagination. when i load 10000 data a time it gives error serilization and deserilization limit is exceed.I set maxLimitlength is maxinteger length.