vote up 0 vote down star

I'm trying to implement a custom membership provider in my asp.net web app. The problem is that whenever I call the "Roles.AddUserToRole" method it writes to the default membership db built in asp. The strange thing is that when I call the "Membership.CreateUser" method it writes to my custom membership tables. No sure whats going, any help would be much appreciated.

Here a bit of my web.config if this will help:

name="" type="System.Web.Security.SqlMembershipProvider" connectionStringName="" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" applicationName="" requiresUniqueEmail="true" passwordFormat="Hashed"

flag

1 Answer

vote up 2 vote down

There are three separate providers:

  • MembershipProvider
  • RoleProvider
  • ProfileProvider

If you want custom behavior for Roles.AddUserToRole you have to make a custom RoleProvider aswell.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.