如何在MVC 5 web视图中使用Model变量
本文关键字:Model 变量 视图 web MVC | 更新日期: 2023-09-27 18:19:51
我已经从活动目录中提取了一个用户列表,这些用户对当前用户有活动报告,并成功地在MVC 5中的web视图表中显示了该列表。
然而,当我试图在web视图中的表上方打印当前用户的名称时,我遇到了一个问题。
有人知道如何在MVC 5中使用剃刀视图来实现这一点吗?
这是我用来从系统中获取当前用户的代码:
public string getUserName()
{
displayName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
return displayName;
}
我目前正在研究的观点是:
@model IEnumerable<BUUK.BSS.Models.User>
@{
ViewBag.Title = "MyTeam";
}
<h2>@ViewBag.Title</h2>
<h3>@ViewBag.Message</h3>
<p>
ViewBag.Title = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Email)
</th>
<th></th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Email)
</td>
@*<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
</td>*@
</tr>
}
</table>
如果你只是想在视图中打印名称,你应该这样做:
<p>
@System.Security.Principal.WindowsIdentity.GetCurrent().Name
</p>