@model IEnumerable @{ ViewBag.Title = "Index"; }

Index

@Html.ActionLink("Create New", "Create")

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.User_Name) @Html.DisplayNameFor(model => model.User_LastName) @Html.DisplayNameFor(model => model.User_PhoneNumber) @Html.DisplayNameFor(model => model.User_Password) @Html.DisplayNameFor(model => model.User_Status)
@Html.DisplayFor(modelItem => item.User_Name) @Html.DisplayFor(modelItem => item.User_LastName) @Html.DisplayFor(modelItem => item.User_PhoneNumber) @Html.DisplayFor(modelItem => item.User_Password) @Html.DisplayFor(modelItem => item.User_Status) @Html.ActionLink("Edit", "Edit", new { id=item.User_ID }) | @Html.ActionLink("Details", "Details", new { id=item.User_ID }) | @Html.ActionLink("Delete", "Delete", new { id=item.User_ID })