Hi,
I'm working on a web application that has web forms pages. All of the web forms pages use MasterPage, and the <header> section is defined in the MasterPage.
Now I have a situation - I need to add the bootstrap datepicker to several pages, which will require the extra .js and .css file coming with the bootstrap, such as: bootstrap.css, bootstrap-responsive.css, bootstrap.js, etc.
Now - I ONLY want to add these additional .css and js files to the pages that need the bootstrap datepicker; and don;t want to add them to the MasterPage.
I can easily add the .js files to the .aspx pages; however, I can not find a way to add the .css files to the .aspx pages.
Can I use <% Register ...%>? like the code below:
<%@ Register href="~/CSS/bootstrap.css" rel="stylesheet" type="text/css") %>
Please confirm.
Thanks,
CLaudia
Update - I ...

Go to the complete details ...