prompt for domain login

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

When our staff are logged into a computer on our domain, they're still
prompted for their domain login and password to get into our ASP.NET
application in Internet Explorer when using Windows Authentication. Is it
possible to avoid having the user to login again??

Thanks in advance.
Mark
 
There are a couple of things you need to do; first, in your web.config
file, in the Authentication section, set authentication mode =
"Windows". Then set identity impersonate = "true". This will pass the
user's credentials along to IIS for validation. You may also need to
remove anonymous access to the site in IIS. Then, the user's
credentials are passed from Explorer through ASP.NET and into IIS.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top