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 でこれを行う方法を教えてください。私の Web サイトは 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 に答える