我已从活动目录中提取了一个用户列表,这些用户已向当前用户提供活动报告,并已成功在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>
答案 0 :(得分:0)
如果您只是想在视图中打印名称,您应该这样做:
<p>
@System.Security.Principal.WindowsIdentity.GetCurrent().Name
</p>