views:

432

answers:

3

I'm rewriting an internal application, which currently uses its own username/password combination. People are forever forgetting it, or not changing their password from the default, so I want to use single sign on and make use of our domain.

I am using .Net2.0 and I cannot find any ways of doing this outside of 3.5.

How can get the login name of the current user and then check an entered password against the password inside AD?

+2  A: 

This article should serve as a good starting point:

Active Directory Authentication from ASP .NET

Nebakanezer
+2  A: 

There is also the ActiveDirectoryMembershipProvider:

http://msdn.microsoft.com/en-us/library/ms998360.aspx

NYSystemsAnalyst
+1  A: 

Also for sample try this Everything In Active Directory

Khan