Hi!
I want to develop an ASP.NET application that can detect the user logged on a Window Domain. These credentials are going to be used to logging on the ASP.NET application.
How can I do this?
Thanks!
|
|
Hi! I want to develop an ASP.NET application that can detect the user logged on a Window Domain. These credentials are going to be used to logging on the ASP.NET application. How can I do this? Thanks!
|
||
|
|
|
|
In IIS, turn on Integrated Windows Authentication, and in code, if you use:
it will return the windows username of the logged in user, i.e. MYDOMAIN\MYUSERNAME |
||||||
|
|
|
For ASP.net, you can probably use
If IIS is configured correctly (no anonymous logons, at least) |
||
|
|
|
|
Here is C# code I use to authenticate against the Active Directory
|
|||
|
|
|
You should look into the active directory membership provider. It's built into ASP.NET. |
||
|
|
|
|
|
||