I have an asp.net web application. I want to auto log in a user based on whether the user is in a email distribution list. Is it possible? If not what’s the best way to go about this?
Thanks 🙂
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.
You wouldn’t be able to do the auto login, however one possible route to explore is if you’re email distro groups are stored within an active directory you may possibly be able to get the users within the group by doing forms authentication via ldap against your active directory…
here is a reference on doing ldap authentication.
http://msdn.microsoft.com/en-us/library/ff649227.aspx
also when i was doing ldap auth i found this tool to be a godsend
http://www.ldapbrowser.com/
Hopefully this helps!