@model IEnumerable @{ ViewBag.Title = "Kullanıcı Listesi"; ViewBag.Modul = "Kullanıcı Yönetimi"; ViewBag.ModulLink = "/UserOp/Index"; Layout = "~/Views/Shared/Index.cshtml"; } @Html.Raw(ViewBag.MesajGoster) Yeni Kullanıcı

@ViewBag.Title

@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.KIMLIKNO) @Html.DisplayNameFor(model => model.USERNAME) @Html.DisplayNameFor(model => model.NAME) @Html.DisplayNameFor(model => model.SURNAME) @Html.DisplayNameFor(model => model.EMAIL) İşlemler
@Html.DisplayFor(modelItem => item.KIMLIKNO) @Html.DisplayFor(modelItem => item.USERNAME) @Html.DisplayFor(modelItem => item.NAME) @Html.DisplayFor(modelItem => item.SURNAME) @Html.DisplayFor(modelItem => item.EMAIL)