从 Windows 身份验证应用程序注销

发布于 2024-11-18 03:14:52 字数 278 浏览 3 评论 0原文

我想开发一个网络应用程序,用户可以使用活动目录中的数据自动登录,或者注销以获取一个表单,用户可以在其中输入其他用户数据以作为另一个用户登录。 我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人海汹涌 2024-11-25 03:14:52

您无法使用 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.

无人问我粥可暖 2024-11-25 03:14:52

我能够让它工作,但它只适用于 IE,不适用于 FireFox 或我知道的其他浏览器。

<input id="LogoutButton" type="button" value="Log Out" />

<script>
    $(document).ready(function () {

        $("#LogoutButton").bind("click", function () {


            try {
                if (window.XMLHttpRequest) {
                    alert("You have been logged off from the website");
                    document.execCommand("ClearAuthenticationCache", "false");
                    window.location = "http://www.stackoverflow.com"
                    if (top.location != location) {
                        top.location.href = ".";


                    }
                    window.location = "http://www.stackoverflow.com"
                }

            }
            catch (e) {
                alert("This feature requires IE 6.0 SP1 or above. " + "Please close all browser windows in order to complete the logout process.");
            }
        });

    });
</script> 

I am able to get this to work but it only works for IE, not FireFox or otheres that I am aware of.

<input id="LogoutButton" type="button" value="Log Out" />

<script>
    $(document).ready(function () {

        $("#LogoutButton").bind("click", function () {


            try {
                if (window.XMLHttpRequest) {
                    alert("You have been logged off from the website");
                    document.execCommand("ClearAuthenticationCache", "false");
                    window.location = "http://www.stackoverflow.com"
                    if (top.location != location) {
                        top.location.href = ".";


                    }
                    window.location = "http://www.stackoverflow.com"
                }

            }
            catch (e) {
                alert("This feature requires IE 6.0 SP1 or above. " + "Please close all browser windows in order to complete the logout process.");
            }
        });

    });
</script> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文