DataTables and ASP.NET
DataTables and ASP.NET
hliasmin
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
This discussion has been closed.
Answers
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.
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