我正在使用具有简单成员资格的MVC4数据库。在示例模板中 他们使用以下内容:
@if (Request.IsAuthenticated) {
<text>
Hello, @Html.ActionLink(User.Identity.Name, "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })!
@using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm" })) {
@Html.AntiForgeryToken()
<a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>
}
在其他网站上我看到了:
@if(WebSecurity.IsAuthenticated)
{
<p>Welcome, @WebSecurity.CurrentUserName</p>
<p><a href="@Href("~/logout")">Log out</a></p>
}
有人可以告诉我这些之间的区别是什么?
答案 0 :(得分:0)
<强> Request.IsAuthenticated 强>
我相信如果您使用的是Windows身份验证。如果请求由经过身份验证的用户发送,则始终为true。在此,用户和组等由您机器中的Windows Active Directory或用户帐户处理。
<强> WebSecurwity.IsAuthenticated 强>
我相信在使用会员提供商时,我们可以为用户提供CRUD操作。 请访问以下网址以获取更多信息。 http://www.mikepope.com/blog/displayblog.aspx?permalink=2240