Mega Code Archive

 
Categories / ASP.Net Tutorial / Authentication Authorization
 

Using Cookieless Forms Authentication

When cookieless authentication is enabled, a user can be identified by a unique token added to a page's URL.  The following web configuration file enables AutoDetect. File: Web.Config <configuration>     <system.web>       <authentication mode="Forms">         <forms cookieless="AutoDetect"/>       </authentication>     </system.web> </configuration>