I am using asp.net 4.5 Bundling and Minification in my project. I want to use the jscripts bundle in html page. I have tried without success
@Scripts.Render("~/bundles/jquery")
<script src="~/bundles/jquery" type="text/javascript"></script>
@Scripts.RenderFormat("
<script type=\"text/javascript\" src=\"{0}\"></script>", "~/bundles/jquery")
My question is that is it possible to use jscripts or CSS bundle in html page?