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>
|