Server-side using Classic ASP
Server-side using Classic ASP
Hello,
Does anyone has developed a table with DataTables using server-side processing with Classic ASP?
Maybe someone could coment the lines of the code put into the example. It's very difficult for one that has never faced PHP language to understand that and transform it into another language when he don't know the PHP code.
Thanks.
Does anyone has developed a table with DataTables using server-side processing with Classic ASP?
Maybe someone could coment the lines of the code put into the example. It's very difficult for one that has never faced PHP language to understand that and transform it into another language when he don't know the PHP code.
Thanks.
This discussion has been closed.
Replies
You need to do 3 things:
1. Define your table in normal html
2. call the DataTable with client side javascript.
Both of these are well documented on this site.
3. Define a method in you ASP code that parses the Request parameters and creates a well formatted json object to return. That's it - there's no magic.
The interesting bit comes when you create some server side classes to streamline the creation of the emitted javascript (for step 2 above) and the creation of the json object (step 3).
Good luck
David