소년포비의 세계정복!!

[ASP.NET] 인증여부 판단 (Form 인증 사용시) 본문

프로그램 세상/ASP.NET

[ASP.NET] 인증여부 판단 (Form 인증 사용시)

소년포비 2009. 10. 24. 02:09

인증 여부
User.Identity.IsAuthenticated

인증된 아이디
User.Identity.Name

로그아웃
FormsAuthentication.SignOut ();

로그인
FormsAuthentication.SetAuthCookie (id, false);

로그인 후 페이지 이동
FormsAuthentication.RedirectFromLoginPage (id, false);


using System.Web.Security;