R
Russ
When I call Roles.IsUserInRole( user.UserName, "WholeCompany" ) I get the
error "Unable to update the password. The value provided as the current
password is incorrect". I'm not exactly sure where I am going wrong.
this is my web.config
<roleManager
defaultProvider="WindowsProvider"
cacheRolesInCookie="true"
cookieName=".RussoundRoles"
cookieSlidingExpiration="true"
domain="russound.com"
enabled="true">
<providers>
<clear />
<add name="WindowsProvider"
type="Russound.Membership.RussRoleProvider"
connectionStringName="roles.russound.com"/>
</providers>
</roleManager>
and the class RussRoleProvider is currently only
public class RussRoleProvider : AuthorizationStoreRoleProvider
{
}
so I'm basicly just calling the AzMan role provider right now.
Please help, I'll post additional code if necessary.
Thanks!
error "Unable to update the password. The value provided as the current
password is incorrect". I'm not exactly sure where I am going wrong.
this is my web.config
<roleManager
defaultProvider="WindowsProvider"
cacheRolesInCookie="true"
cookieName=".RussoundRoles"
cookieSlidingExpiration="true"
domain="russound.com"
enabled="true">
<providers>
<clear />
<add name="WindowsProvider"
type="Russound.Membership.RussRoleProvider"
connectionStringName="roles.russound.com"/>
</providers>
</roleManager>
and the class RussRoleProvider is currently only
public class RussRoleProvider : AuthorizationStoreRoleProvider
{
}
so I'm basicly just calling the AzMan role provider right now.
Please help, I'll post additional code if necessary.
Thanks!