视图中的我的助手,旨在显示在应用程序中注册的用户的全名,以及通过 3rd 方身份验证登录的用户名。
@using MyApp.Models;
@helper GetUserName()
{
if (User.Identity.AuthenticationType == "Application")
{
using (var db = new MyAppDbContext())
{
@db.Users.Find(User.Identity.GetUserId()).FullName
}
}
else
{
@User.Identity.GetUserName()
}
}
然后我使用这个助手:
@if (Request.IsAuthenticated)
{
using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", @class = "navbar-form pull-right" }))
{
@Html.AntiForgeryToken()
<ul class="nav">
<li>
@Html.ActionLink("Hello " + GetUserName() + "!", "Manage", "Account", routeValues: null, htmlAttributes: new { title = "Manage" })
</li>
<li><a href="javascript:document.getElementById('logoutForm').submit()">Log off</a></li>
</ul>
}
}
我的用户名是 Proba234,它显示如下:
为什么会出现那些奇怪的字符(<$G+$>
),以及如何摆脱它们?