0

I'm building an ASPNET MVC3 app; I have built, on the SQLServer DB, my users, roles and user_roles tables andI would like to use them instead of the aspnet_* tables built by using aspnet_regsql.exe.

Do you know if is this possible and, if so, in which way I can authenticate my users towards my tables?

halfer
  • 19,471
  • 17
  • 87
  • 173
Cris
  • 11,868
  • 27
  • 85
  • 158

2 Answers2

1

You just need to implement your own Membership and Role providers.

see How do I create a custom membership provider for ASP.NET MVC 2?

Community
  • 1
  • 1
BigJump
  • 14,212
  • 3
  • 29
  • 27
1

Yes, you will need to build a custom memberShip provider

devdigital
  • 33,892
  • 9
  • 95
  • 119