Is there any way to conditionally load JavaScript reference files in ASP.Net Razor View? There are 15 web pages in my project. They refer to common set of libraries say A, B, C, D. However, there is one page which require library E instead of B.
How can I write the tags so that it will load library E only for that particular page? And also it will NOT LOAD B for the same page?
If I load E and B both, then the page crashes.

