从 Windows 身份验证应用程序注销
我想开发一个网络应用程序,用户可以使用活动目录中的数据自动登录,或者注销以获取一个表单,用户可以在其中输入其他用户数据以作为另一个用户登录。 我在 web.config 中设置了
<authentication mode="Windows"/>
<authorization>
<deny users="?" />
</authorization>
但是我总是登录。如何注销并打开一个简单的表单来输入另一个用户的用户数据?
I want to develop a webapplication where the user can login automaticly with the data from the active directory or logout to get a form where the user can enter other user data to login as another user.
I set in the web.config the
<authentication mode="Windows"/>
<authorization>
<deny users="?" />
</authorization>
But then I am always loged in. How can I log out and open a simple form to enter user data of another user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法使用 Windows 身份验证注销,这就是此类身份验证的全部原理:您登录 Windows,从现在开始它就是单点登录。您需要在另一个用户下打开浏览器。
如果您想启用此功能,您可以使用针对 AD 的表单身份验证和模拟。
You can't logout with Windows authentication, that's the whole idea of this type of authentication: you log into Windows and from now on it is a Single Sign On. You will need to open the browser under another user.
If you want to enable this functionality you could use forms authentication against AD with impersonation.
我能够让它工作,但它只适用于 IE,不适用于 FireFox 或我知道的其他浏览器。
I am able to get this to work but it only works for IE, not FireFox or otheres that I am aware of.