Hello,
Is it possible to use 2 ASP.NET Membership DB in one web application?
My scenario is like this. I have 3 roles, student, faculty, and administrators. I would like to separate the student role to a separate ASPNET DB and by default, the application points to the DB with that of the faculty and administrator. Let's suppose that the StudentDB is the one for students and OthersDB for the other database.
Would there be any way that whenever I call the Membership.CreateUser method, I can choose on which datasource it would write the details? Say I would like to use StudentDB when I want to add a student/validate a student account and the other DB otherwise WITHOUT customizing the Membership provider? If there's no means out of the box, I can write my own provider.
...
Go to the complete details ...