0

I'm a new user for MVC4.

I need to create a website with authentication system.

I need use an existing db with same data (username, password ecc...).

MVC4 came with SampleMembership provider.

How I can develop my personal provider to Authenticate users as SampleMembership?

Is possibile to overrides methods from the SampleMembership?

dove
  • 20,469
  • 14
  • 82
  • 108
  • 1
    You mean `SimpleMembership`, right? Have a look [here](http://stackoverflow.com/questions/12352218/how-do-i-manage-profiles-using-simplemembership) – StuartLC Nov 14 '12 at 13:49

1 Answers1

0

I am pretty sure you are referring to SimpleMembership. SimpleMembership was not developed for extensive customization or integrating to existing databases. To use an existing database you want to create your own membership provider just like you always have in ASP.NET. You can find direction on doing this here.

Community
  • 1
  • 1
Kevin Junghans
  • 17,475
  • 4
  • 45
  • 62