My roleManager in web.confi looks like this.
<roleManager enabled="true"
cacheRolesInCookie="true"
cookieName=".ASPR0LE3S"
cookieTimeout="115"
cookieSlidingExpiration="true"
cookieProtection="All"
createPersistentCookie="false"
defaultProvider="CustomizedRoleProvider">
<providers>
<add name="CustomizedRoleProvider"
type="System.Web.Security.SqlRoleProvider"
connectionStringName="MyConn"
applicationName="/MyApp"/>
</providers>
</roleManager>
What I am tring to do is store my Roles in Cookie. The code is suppose to store it but when I view cookies in FireFox there is no such cookie by the name ASPR... What could be the problem? Am I missing something.