You can define a section in the main part of the main page:
<head>
<script type="text/javascript" src="jquery.js"></script>
@RenderSection("scripts")
</head>
and in the view, define this section:
@section scripts {
<script type="text/javascript" src="someplugin.js"></script>
}
, :
@if (IsSectionDefined("mysection")) {
@RenderSection("mysection")
}
else {
<div>some default content</div>
}