Membership in ASP.Net has an Application Table . As long as you have a different application name for another website, you can combine them into one large database; the likelihood of duplication of the user ID (which is stored as uniqueid) is very small.
When a user logs in, you will need the following 3 fields -
- Application (it could be DropDownLis)
- Username
- Password
Create your own check
You cannot use your own membership provider to verify a user who accepts only a username and password.
So, you need to implement your own verification method to validate a user from a federated database.
Note
If you are redirected to another website, please note the limitation on the authenticity of the form. For example, it cannot transfer authentication cookies from www.one.com to www.two.com
source share