I'm working with ASP.NET MVC, JQuery, Javascript
I understand that when you work with a main view that calls a partial view, the partial view is injected into the main view. If that were true, it would no longer be necessary to declare the validation scripts in the partial view, such as:
<script src="~/scripts/jquery-3.1.1.min.js"></script>
<script src="~/scripts/jquery.validate.min.js"></script>
<script src="~/scripts/jquery.validate.unobtrusive.min.js"></script>
In other words or in other words, is it necessary to declare the same scripts in the partial view, having previously declared in the main view?