What is the Script Library link in asp.net mvc 3?

I noticed when you make a strongly typed view, you have the option to check the "reference script libraries" checkbox

http://gyazo.com/289392fc957866f19c4ae6d8b51a037e.png

In my case, I don't have strongly typed views, but what links does it add?

+4
source share
1 answer

He simply adds the following:

<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>

<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

+3
source

Source: https://habr.com/ru/post/1337878/


All Articles