• 阻止用户关闭网页,提示保存的解决方案IE/FF/OP通用(未经测试)


    in fact the onbeforeunload event supported in Firefox browser, but the window.event is not supported in Firefox.
     
    So, we can use the following code to stop page from leaving:
     
        function SaveRemind()
        {
            window.event.returnValue= "input has not been saved, are you sure to leave?";   
    }
     
    But we should use the following code in Firefox to achieve the same effect:
     
        function SaveRemind()
        {
            return "input has not been saved, are you sure to leave?";   
        }
     
    If you would like to save the user changes in onbeforeunload event, and don’t stop the page from leaving, we can use “window.confirm” function just like following code:
     
                if(window.confirm("Are you want to save data?"))
                {
                     document.getElementById("BtnSave").click();//you can write other codes for save data in this line, just like a AJAX call function.
                     window.alert("data has been saved");
                }
     
    In your scenario, we also need to distinguish whether a post is back occurring or user leaving this page. Please check the following code in italic:
     
    The full code of my test demo (work in Internet Explorer 6.0/7.0 and Firefox 3.0):
     
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default11.aspx.cs" Inherits="Default11" %>
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Untitled Page</title>
        <script type="text/javascript">
        var NeedAlert=true;//when postback occur (forms onsubmit), needn''t alert.
        function SaveRemind()
        {
            if(NeedAlert)
            {
                if(window.confirm("are you want to save data?"))
                {
                     document.getElementById("BtnSave").click();//you can write other codes for save data in this line.
                     window.alert("data has been saved");
                }
            }
        }
        </script>
     
    </head>
    <body onbeforeunload="SaveRemind();">
        <form id="form1" runat="server" onsubmit= "NeedAlert=false;" >
        <div>
        </div>
        <asp:Button ID="BtnSave" runat="server" onclick="Button1_Click" Text="BtnSave" />
        </form>
    </body>
    </html>
     
        protected void Button1_Click(object sender, EventArgs e)
        {
            using (SqlConnection conn = new SqlConnection(@"Data Source=....."))
            {
                using (SqlCommand cmd = new SqlCommand("insert into Table1 values(''myname'',''myid'')", conn))
                {
                    conn.Open();
                    cmd.ExecuteNonQuery();
                }
            }
        }
     
    One thing I need to mention is that, I am not sure about if user click “OK” button so quickly and the BtnSave.Click () can also make the data save in database. So, you’d better to write an asynchronous function call, just like AJAX to save the data.
     
    If I’ve misunderstood the facing problem, please feel free to let me know.
  • 相关阅读:
    使用vs2010生成SQL Server 随机数据
    关于范式的一些简单理解
    SQL Server 中的逻辑读与物理读
    关于SQLServer 中行列互转的实例说明
    SQL Server2012新特性概述
    讨论关于RAID以及RAID对于存储的影响
    eclipse配置mybatis xml文件自动提示(转)
    eclipse自动添加注释
    模拟点击事件在alert前不起作用
    SSM提交了事物但数据库不执行
  • 原文地址:https://www.cnblogs.com/future/p/1274216.html
Copyright © 2020-2023  润新知