onbeforeunload来回滚一些动作

时间:2015-10-07 10:41:49

标签: javascript c# asp.net server-side onbeforeunload

我有一个onbeforeunload,它工作正常。但是,如果用户选择离开页面,我想要一种触发我的DB方法来删除现有项目的方法。如何检测结果以及触发我的DB方法?我的数据库方法是在服务器端。

以下是onbeforeunload的javascript:

    var showMsg = true;
    window.onbeforeunload = function () {
        if (showMsg) {
            return "You must publish your profile. Leaving this page will delete the profile information you have entered."
        }
    }

0 个答案:

没有答案