Files
ProductiveAspNetMvc/Ch03/03_Solution/Website/Views/Cart/EmptyCart.cshtml
Jess Chadwick 20458e435e Exercise Files
2018-06-07 00:03:24 -04:00

17 lines
311 B
Plaintext

@model HPlusSports.Models.ShoppingCart
@{
ViewBag.Title = "Cart";
}
<div class="row">
<div class="well well-lg">
<p>Your shopping cart is empty!</p>
<p>
Head on over to
@Html.ActionLink("the Product Catalog", "Index", "Products")
to find something!
</p>
</div>
</div>