1/
I don't understand the line b/ why it is needed to remove the default cookie
name .ASPXAUTH?
2/
Do I need to set up FormsCookieName property to unique value for every new
user, or can I use the same name for all user within one web application (web
site).
3/
Is FormsCookieName used just as a prefix for a cookie or it should
unambiguously indentify the user cookie?
Thanks fro help,
Lubomir
<authentication mode=Forms>
<forms name = ".ASPXAUTH">
</authentication>
Is the <forms name = ".ASPXAUTH"> used for application wide cookies, while
when I am creating a new user, I have to create a unique cookie
name?FormsAuthentication.SetAuthenticationCookie (userName, ...);
Lubomir