I have an ASP.NET Membership Site with different roles (customer and admin).
Is it possible to login as a customer when i am logged in as an admin? How?
I have no access to the passwords, so i don’t know if it is possible or how.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Built-in ASP.NET Membership Provider has not such feature, I would call it “impersonation”.
To implement it you need to inherit SqlMembershipProvider and extend it.
See also: