There are some views that I create which use the _layout partial view, but I don't want to include every single css or script bundle. What is the best way to include the script or css file in the view?
<head>
<link href="Content/style.css" .../>
<script src="Scripts/myscript.js" ...></script>
</head>
How can I get the view to render something similar to this? There is no head tag in a View that uses a partial view.