jQuery DataTables
https://datatables.net/examples/server_side/
https://datatables.net/examples/server_side/post.html
https://editor.datatables.net/examples/simple/server-side-processing.html
Web.config
- ASP.NET Runtime : These limits are lifted using the httpRuntime node and its associated attributes
-
IIS Requests Filtering module : IIS also applies its own filtering rules regarding URL and Query String length, even before the request is processed by the ASP.NET Runtime. By default, the maximum allowed length for a query string is 2048 (see here). You should set the appropriate values in your Web.config, under the requestLimits subnodes, eg :
<system.webServer> <security> <requestFiltering> <requestLimits maxQueryString="4096"/> </requestFiltering> </security> </system.webServer>
jQuery DataTables Service Side Processing (HAY)
https://www.codeproject.com/Tips/1011531/Using-jQuery-DataTables-with-Server-Side-Processin
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<security>
<requestFiltering>
<requestLimits maxQueryString="32768"/>
</requestFiltering>
</security>
https://datatables.net/media/blog/beautiful_tables/complete.html
https://world.episerver.com/documentation/upgrading/Episerver-CMS/8/upgrading-from-mvc-4-to-5/
- Javascript
- HTML
- CSS
- Ajax
- Server-side script
jQuery DataTables
https://editor.datatables.net/examples/advanced/jsonId.html
jQuery DataTables for Beginners
https://www.codeproject.com/Tips/844403/jQuery-Datatables-For-Beginners
CSS for jQuery DataTables
https://datatables.net/forums/discussion/39890/passing-parameters-to-column-render-function
http://jsfiddle.net/jasonblewis/u9en604m/
http://jsfiddle.net/jasonblewis/u9en604m/4/
https://stackoverflow.com/questions/41982049/jquery-datatables-render-column-data
Ajax CRUD Operations with Grid using JQuery DataTables in ASP.NET MVC 5
https://code.msdn.microsoft.com/Implement-Ajax-CRUD-a543a978
https://gallery.technet.microsoft.com/Ajax-CRUD-Operations-with-d005e974
AJAX CRUD in GridView using JQuery DataTables in ASP.NET MVC 5
Ajax server paging, searching with jQuery DataTables
http://developmentpassion.blogspot.com/2017/06/ajax-crud-in-grid-using-jquery.html
https://www.c-sharpcorner.com/article/using-jquery-datatables-grid-with-asp-net-core-mvc/
http://www.webslesson.info/2017/01/php-pdo-ajax-crud-with-data-tables-and-bootstrap-modals.html
CRUD, Upload Image
https://phppot.com/php/twitter-like-profile-image-upload-using-jquery-ajax/
Upload files
https://phppot.com/php/pause-resume-file-upload-using-javascript/
https://phppot.com/php/multiple-file-upload-using-fine-uploader/
Demo
https://phppot.com/demo/multiple-file-upload-using-fineuploader/