我的要求是: -
点击“退出”链接,弹出消息“这将终止会话并关闭浏览器。你想继续吗?“有是和否按钮。单击“是”,会话应在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,但它是一个遗留应用程序,所以我必须做代码!!!
答案 0 :(得分: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
}
}