1. According to ASP.NET Core Documentation, rendered partial view using TagHelper instead of Razor syntax

2. Referenced newly installed jquery library from libman in the _Layout.cshtml file of WebMVC project
This commit is contained in:
rafsanulhasan 2018-08-31 23:51:18 +06:00
parent 8956990b6a
commit 93a79c1e4f

View File

@ -44,11 +44,12 @@
</a>
</section>
@await Html.PartialAsync("_LoginPartial")
<partial name="_LoginPartial" />
</article>
</div>
</header>
@RenderBody()
@ -69,7 +70,7 @@
</footer>
<environment names="Development">
<script src="~/lib/jquery/dist/jquery.js"></script>
<script src="~/lib/jquery/jquery.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
</environment>