DataTables and ASP.NET

DataTables and ASP.NET

hliasminhliasmin Posts: 5Questions: 2Answers: 0

Till now i used to have and use DataTables with php. Now i want to use, if i can, the DataTables for asp.net. Can i do it? What do i have to download in order to use these libraries for ASP.NET

Answers

  • bindridbindrid Posts: 730Questions: 0Answers: 119

    I work in an asp.net environment with Datatables. It works well. Client side, you can use the same stuff. Server side, we would need some more context before we can help.

    There are some samples I created a while back at https://github.com/bindrid/DataTablesServerSide for you to look through.

    Unfortunately, none of it is MVC.

  • allanallan Posts: 61,650Questions: 1Answers: 10,094 Site admin

    Yes, as @bindrid suggests, DataTables is a client-side Javascript library, so it doesn't "care" what you use on the server-side. You could use .NET, PHP, Node, Python, ColdFusion, anything you want, as long as it populates the table as DataTables requires (e.g. with JSON, or directly with HTML).

    Allan

This discussion has been closed.