/MvcMusicStore/Views/StoreManager/Delete.cshtml
# · Razor · 21 lines · 16 code · 5 blank · 0 comment · 0 complexity · bd1b580b5611f94e63e87a9db169bc55 MD5 · raw file
- @model MvcMusicStore.Models.Album
-
- @{
- ViewBag.Title = "Delete";
- }
-
- <h2>Delete Confirmation</h2>
-
- <p>Are you sure you want to delete the album titled
- <strong>@Model.Title</strong>?
- </p>
-
- @using (Html.BeginForm()) {
- <p>
- <input type="submit" value="Delete" />
- </p>
- <p>
- @Html.ActionLink("Back to List", "Index")
- </p>
-
- }