This is an example loginPage in Metronic Sample document. I copy this code to my ASP.NET MVC 5 project. But LoginPage does not show background images.
This is the Metronic example loginPage:

Markup:
<div class="col-md-6 bs-reset">
<div class="login-bg" style="background-image:url(~/Scripts/assets/pages/img/login/bg1.jpg)">
<img class="login-logo" src="~/Scripts/assets/pages/img/login/logo.png" />
</div>
</div>
Please help me! Thanks


Try setting the
background-imagelike the following:background-image:url(Scripts/assets/pages/img/login/bg1.jpg)Without the
~/part in the path.