@model WebApplication1.Models.news @{ ViewBag.Title = "Delete"; }

Delete

Are you sure you want to delete this?

news


@Html.DisplayNameFor(model => model.title)
@Html.DisplayFor(model => model.title)
@Html.DisplayNameFor(model => model.image)
@Html.DisplayFor(model => model.image)
@Html.DisplayNameFor(model => model.link)
@Html.DisplayFor(model => model.link)
@Html.DisplayNameFor(model => model.summary)
@Html.DisplayFor(model => model.summary)
@Html.DisplayNameFor(model => model.cat)
@Html.DisplayFor(model => model.cat)
@Html.DisplayNameFor(model => model.tag)
@Html.DisplayFor(model => model.tag)
@Html.DisplayNameFor(model => model.publishDate)
@Html.DisplayFor(model => model.publishDate)
@Html.DisplayNameFor(model => model.userID)
@Html.DisplayFor(model => model.userID)
@Html.DisplayNameFor(model => model.Content)
@Html.DisplayFor(model => model.Content)
@Html.DisplayNameFor(model => model.views)
@Html.DisplayFor(model => model.views)
@using (Html.BeginForm()) { @Html.AntiForgeryToken()
| @Html.ActionLink("Back to List", "Index")
}