I have this situation:
I have a website and needs to use the users base from a users database (SQL Server, Oracle, etc) and from a NT user database (computer or domain) for security/authentication of the site.
The scenario is this:
- A user logs into the site and enters his/her username and password.
- The site looks up to the users database (SQL Server, Oracle, etc.) if the user exists.
- If not, the site looks up to the domain (Active Directory) if the user exists.
How can I use both user bases? Is it possible to use SqlMembershipProvider AND ActiveDirectoryMembershipProvider at the same time?