MVC 5 Forms認証ログイン
1.webを修正する.config System.Web、以下のように変更されました。
2.システムを修正する.WebServerのノードは、「FormsAuthentication」/>を削除し、次のように変更します。
ログインの追加コード: FormsAuthentication.SetAuthCookie(viewModel.LoginName, true);
ログイン後
string name = User.Identity.Name;//ログインしたユーザー名bool hasLogin=User.Identity.IsAuthenticated;//true
注意:mvc 5はForms認証を使用していません.Claims-basedを使用しています.
次の文書を参照してください.
http://www.cnblogs.com/jesse2013/p/membership.htmlhttp://www.cnblogs.com/jesse2013/p/membership-part2.htmlhttp://www.cnblogs.com/jesse2013/p/membership-part3.htmlhttp://www.cnblogs.com/jesse2013/p/aspnet-identity-claims-based-authentication-and-owin.html
ログインの追加コード:
FormsAuthentication.SetAuthCookie(viewModel.LoginName, true);
ログイン後
string name = User.Identity.Name;//ログインしたユーザー名bool hasLogin=User.Identity.IsAuthenticated;//true
注意:mvc 5はForms認証を使用していません.Claims-basedを使用しています.
次の文書を参照してください.
http://www.cnblogs.com/jesse2013/p/membership.htmlhttp://www.cnblogs.com/jesse2013/p/membership-part2.htmlhttp://www.cnblogs.com/jesse2013/p/membership-part3.htmlhttp://www.cnblogs.com/jesse2013/p/aspnet-identity-claims-based-authentication-and-owin.html