Simple メンバーシップで 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>
}
これらの違いは何ですか?