Hi,
If you add a user to a role, then the user will not see that normally until they logout and login again because that is when the role cookie gets set.
But you can reset the cookie manually for the current user like this after you add them to the role:
mojoRoleProvider.ResetCurrentUserRolesCookie();
Hope it helps,
Joe