Hello, I have "jQueryFixes.js" file under my Content folder.
If I add this line :
<script src="@Url.Content("~/Content/jQueryFixes.js")" type="text/javascript"></script>
under _Layout.cshtml like this :
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
<script src="@Url.Content("~/Content/jQueryFixes.js")" type="text/javascript"></script>
</head>
Will it work in every .cshtml files?
Thanks.
Go to the complete details ...