Search code examples
asp.netasp.net-mvcauthenticationasp.net-membership

Best way to register different types of users asp.net mvc


I am looking to register 2 styles of user, they will both have different sets of data in the database.

I am looking to use asp.nets membership roles. Are there any simple ways to do this in an mvc app using maybe the account controller?


Solution

  • I got this working using sqltableprofileProvider http://www.asp.net/downloads/sandbox/table-profile-provider-samples/ This lets me have additional fields to capture at registration.

    I will post more details and a tutorial in blog soon.