0

I am programming a web application for a company, they require that the user should not enter any username and password, the user should be allowed to login to the system by their windows identity.

i have tried WindowsIdenity.GetCurrent() , its working on if the application is on the client.

How do i get the WindowsIdenitiy of the Client User to be sent to the server.

msytNadeem
  • 173
  • 1
  • 4
  • 15

1 Answers1

1

Internet Explorer has a mechanism for transferring the client's windows credentials to the server. You'll need to make your clients use IE, and of course make sure they are on the same domain forest as the server.

You can read here a little about using integrated windows authentication with ASP.NET .

zmbq
  • 38,013
  • 14
  • 101
  • 171