How do I add these javascript library files and css files in asp.net? Thanks !
How do I add these javascript library files and css files in asp.net? Thanks !
//code.jquery.com/jquery-1.12.4.js
https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js
https://cdn.datatables.net/1.10.15/js/dataTables.jqueryui.min.js
https://cdn.datatables.net/responsive/2.1.1/js/dataTables.responsive.min.js
https://cdn.datatables.net/responsive/2.1.1/js/responsive.jqueryui.min.js
//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css
https://cdn.datatables.net/1.10.15/css/dataTables.jqueryui.min.css
https://cdn.datatables.net/responsive/2.1.1/css/responsive.jqueryui.min.css
This question has an accepted answers - jump to answer
Answers
Asp.net is no different than html (unless you are using the scripting control) where the script tag is used for .js files and link tag is used for css files.
order matters so put jquery tags first, jquery ui tags next, then the datatable tags.