aspnetcore/src/MvcMusicStore/Views/Checkout/Complete.cshtml

13 lines
251 B
Plaintext

@model int
@{
ViewBag.Title = "Checkout Complete";
}
<h2>Checkout Complete</h2>
<p>Thanks for your order! Your order number is: @Model</p>
<p>How about shopping for some more music in our
@Html.ActionLink("Store", "Index", "Home")
</p>