Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 쉐어포인트코리아
- 루나네스
- 데브피아
- 지승욱
- 스마트폰
- 윈도우 모바일
- 신동혁
- 서진호
- 윈도우폰
- 헤이맨
- 신석현
- 윈도데브
- MIX10
- 윈모데브
- 윈도우모바일
- UX베이커리
- 김춘배
- windows mobile 6.5
- 안드로이드
- 소년포비소프트
- 훈스닷넷
- 거제도
- 옴니아2
- 주신영
- 소년포비
- 윈도우폰7
- 황광진
- winmodev
- 실버라이트 코리아
- 마이크로소프트
Archives
- Today
- Total
소년포비의 세계정복!!
[ASP.NET] Form 인증 방식 설정 본문
Web.Config 에다가 <authentication mode="Forms"> <forms name = ".AUTHCOOKIE" loginUrl = "Login.aspx" protection = "All" /> </authentication> <authorization> <deny users="?" /> </authorization> 추가후 </system.web> 끝나는 부분에 각 디렉토리 마다 설정을 할수 있다 <location path = "Default.apsx"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> 실제 로그인 로직 string id = txtID.Text; string pwd = txtPwd.Text; if (Authenticate (id, pwd)) { FormsAuthentication.RedirectFromLoginPage (id, false); } |
'프로그램 세상 > ASP.NET' 카테고리의 다른 글
ASP.NET] DataGrid 루프 돌기 (0) | 2009.10.24 |
---|---|
[ASP.NET] 인증여부 판단 (Form 인증 사용시) (0) | 2009.10.24 |
[ASP.NET] 업로드 사이즈 수정 (0) | 2009.10.24 |
코드 비하인드를 이용한 예제 (0) | 2009.10.09 |
Gridview에 DataSet을 DataBind()했을 때 페이징 하기 (0) | 2009.10.08 |