Gets a value that indicates whether the application is configured to support cookieless forms authentication.
Documentation for this section has not yet been entered.
The FormsAuthentication.CookiesSupported property returns a value based on the FormsAuthentication.CookieMode value and the capabilities of the browser.
If the FormsAuthentication.CookieMode property is set to System.Web.HttpCookieMode.UseCookies, the FormsAuthentication.CookiesSupported property will return true.
If the FormsAuthentication.CookieMode property is set to System.Web.HttpCookieMode.UseUri, the FormsAuthentication.CookiesSupported property will return false.
If the FormsAuthentication.CookieMode property is set to System.Web.HttpCookieMode.AutoDetect, the FormsAuthentication.CookiesSupported property will return true if the browser supports cookies and cookies are enabled; otherwise, the FormsAuthentication.CookiesSupported property will return false.
If the FormsAuthentication.CookieMode property is set to System.Web.HttpCookieMode.UseDeviceProfile, the FormsAuthentication.CookiesSupported property will return true if the System.Web.HttpRequest.Browser for the current System.Web.HttpContext.Request supports both cookies and redirecting with cookies; otherwise, the FormsAuthentication.CookiesSupported property will return false.