1

我有一个要求是:-

单击“注销”链接时,弹出消息“这将终止会话并关闭浏览器。你想继续吗?” 是和否按钮。单击“是”后,会话应在 IIS 服务器中终止,并关闭浏览器的当前选项卡。

为了实现这一点,我在下面写了一段代码,但我不知道如何终止 IIS 上的会话

    <script language="vbscript">
            Function OnClickLogout() 
                dim Answer, msg
                Msg = "This will terminate the session and close the browser. Do you want to continue?"
                Answer = MsgBox(Msg, vbYesNo + vbCritical, "Error")
                if Answer = vbYes then
                    window.close
                else
                    'Retrun to the previous page
                end if
            End Function
        </script>

谁能建议我如何在 vbscript 中执行此操作。我的网站在 ASP 中,但它是一个遗留应用程序,所以我必须编写代码!!!

4

1 回答 1

0

你不能简单地使用 JavaScript 吗?我们在我们的 ASP Classic 项目中一直使用它。像这样开始:

    function DeleteProductGroup(){
        var r=confirm("Are you sure you want to delete this product group?");
        if (r==true){//here goes the code if user presses YES
        }
        else{//here goes the code if user presses NO
        }
    }
于 2012-10-17T09:02:51.787 回答