asp.net authenticate from domain login -
I have Windows authentication enabled on asp.net page. I ask to log in when I navigate the page If the user logs on to the domain then how can I remove it?
Sorry, but I did not know how to ask or what to look for.
Config
in the web & lt; Authentication mode = "Windows" /> & Lt; Authority & gt; & Lt; Allow users = "*" /> & Lt; / Authorization & gt;
I have implemented something similar. Just so you know, we have a separate application that uses domain login and for those who use an integrated app login. I was just checking the differences, and found out that we did not have to do almost anything to work:
We have commented on our custom subscription provider and
& lt ;! - & lt; Authentication mode = "form" & gt; ... & lt; / Authentication & gt; - & gt;
Instead we set the Windows authentication and disabled form authentication authentication method in IIS. - But I think setting up authentication in web.config should also work.
Although automatic domain login only works when using Internet Explorer. We did not manage to work with this other browser.
Comments
Post a Comment