Search code examples
asp.netepiserver

EPiServer vs ASP.NET membership


Is there any difference on creating users and roles using the EPiServer membership API and the ASP.NET membership API?

I mean, is it the same to do this:

Membership.CreateUser()

and this?

multiplexingMembershipProvider.CreateUser()


Solution

  • If you have implemented or configured a .net membership provider it would be the same thing since EPiServer Membership and Role management rely on the standard .net providers.