제목 : 17. ASP.NET 보안 : 인증(Authentication)과 권한(Authorization)
글번호:
|
|
41
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2003/11/24 오후 4:31:00
|
조회수:
|
|
6790
|
1. 인증(Authentication)
1.1. Windows 인증
1.2. Form 기반 인증
주요 메서드
System.Web.Security.FormsAuthentication.SetAuthCookie(ID, false)
System.Web.Security.FormsAuthentication.GetRedirectUrl(ID, false)
System.Web.Security.FormsAuthentication.RedirectFromLoginPage(ID, false)
System.Web.Security.FormsAuthentication.Authenticate(ID, PWD)
System.Web.Security.FormsAuthentication.SignOut()
Page.User.Identity.IsAuthenticated
Page.User.Identity.Name
1.3. Passport 인증
쓸 일 없을거다...
2. 권한
-----------