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

https://stackoverflow.com/questions/11636386/how-to-configure-the-web-config-to-allow-requests-of-any-length

  • 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/

https://docs.microsoft.com/en-us/aspnet/mvc/overview/releases/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2

  • 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/crud-operations-in-mvc-using-entity-framework-with-ajax-call-jquery-and-all-val/

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/

ASP.NET

https://docs.microsoft.com/en-us/aspnet/web-forms/overview/getting-started/getting-started-with-aspnet-45-web-forms/display_data_items_and_details