Configuring Forms Authentication : FormsAuthentication « Authentication Authorization « ASP.NET Tutorial

ASP.NET Tutorial
1. ASP.Net Instroduction
2. Language Basics
3. ASP.net Controls
4. HTML Controls
5. Page Lifecycle
6. Response
7. Collections
8. Validation
9. Development
10. File Directory
11. Sessions
12. Cookie
13. Cache
14. Custom Controls
15. Profile
16. Configuration
17. LINQ
18. ADO.net Database
19. Data Binding
20. Ajax
21. Authentication Authorization
22. I18N
23. Mobile
24. WebPart
25. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.NET Tutorial » Authentication Authorization » FormsAuthentication 
21. 10. 1. Configuring Forms Authentication
Several configuration options are specific to Forms authentication:

cookieless:      Use Forms authentication when a browser does not support cookies. 
                 Possible values are UseCookies, UseUri, AutoDetect, and UseDeviceProfile. 
                 The default value is UseDeviceProfile.

defaultUrl:      Set the redirected page after being authenticated. 
                 The default value is Default.aspx.

domain:          Domain associated with the authentication cookie. 
                 The default value is an empty string.

enableCrossAppRedirects:      authenticate users across applications by passing an authentication ticket in a query string. 
                              The default value is false.

loginUrl:        Set the path to the Login page. 
                 The default value is Login.aspx.

name:            specify the name of the authentication cookie. 
                 The default value is .ASPXAUTH.

path:            Set the path associated with the authentication cookie. 
                 The default value is /.

protection:      Set how the authentication cookie is encrypted. 
                 Possible values are All, Encryption, None, and Validation. 
                 The default value is All.

requiresSSL:     Require a SSL (Secure Sockets Layerconnection when transmitting the authentication cookie. 
                 The default value is false.

slidingExpiration:      Prevent the authentication cookie from expiring as long as a user continues to make requests within an interval of time. 
                        Possible values are True and False. 
                        The default value is True.

timeout:          Set the amount of time in minutes before the authentication cookie expires.  
                  The default value is 30.
21. 10. FormsAuthentication
21. 10. 1. Configuring Forms Authentication
21. 10. 2. Use the web configuration file to change the name of the authentication cookie.
21. 10. 3. Using Cookieless Forms Authentication
21. 10. 4. Using Sliding Expiration with Forms Authentication
21. 10. 5. Set user name with FormsAuthentication.SetAuthCookie
21. 10. 6. Validate a user with FormsAuthentication.Authenticate
21. 10. 7. Using Forms Authentication Across Domains: Query String Authenticate
21. 10. 8. Web configuration file contains a list of usernames and passwords.
21. 10. 9. Assigning a name to the user and accessing next pages
21. 10. 10. Principal Login
21. 10. 11. Logout
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.