If you use partial view, you need script library links
at the top of the page add only script add as
@Scripts.Render("~/bundles/jquery")
then body bottom add tag
@RenderSection("scripts", required: false)
any other page extends the scripting section, for example
@section scripts{ <script src="/Scripts/jquery.validation.js" type="text/javascript"></script> }
source share