色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

ASP.NET 多次提交的解決辦法2

例如:
protected void Page_Load(object sender, EventArgs e)
{
//.NET1.1
Button1.Attributes.Add("onclick", "this.disabled=true;" + this.GetPostBackEventReference(this.Button1));
//.NET 2.0以上
Button1.Attributes.Add("onclick", "this.disabled=true;" + this.ClientScript.GetPostBackEventReference(Button1, ""));
}
為了測試,我們可以建立一個頁面,加入一個btnAdd按鈕
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AddAndEditUser.ASPx.cs" Inherits="AddUser" %><html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>添加和編輯頁面示例</title>
</head>
<body>
<form id="frmMain" runat="server">
<ASP:Button ID="btnAdd" runat="server" CssClass="INPUT-BUTTON-Save" OnClick="btnAdd_Click">
</ASP:Button>
</form>
</body>
</html>
/*----------------------------------------------------------------
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class AddUser : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
btnAdd.Attributes.Add("onclick", "this.disabled=true;" + this.ClientScript.GetPostBackEventReference(btnAdd, ""));
}
protected void btnAdd_Click(object sender, EventArgs e)
{
//模擬網絡擁塞5秒鐘
System.Threading.Thread.Sleep(5000);
}
}
可見當點擊了按鈕,需要等5秒鐘按鈕才能點擊。即頁面回發(fā)一后按鈕才能用。這樣可以有效的防止用戶多次點擊按鈕,造成多次提交!

AspNet技術ASP.NET 多次提交的解決辦法2,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 东方市| 泸定县| 丽江市| 菏泽市| 抚宁县| 中阳县| 浦江县| 九江市| 沈丘县| 绍兴县| 关岭| 中阳县| 察雅县| 宜昌市| 蓝山县| 阿拉善左旗| 朔州市| 阿合奇县| 康马县| 漳平市| 宝丰县| 成武县| 封开县| 云浮市| 金塔县| 崇礼县| 宜黄县| 呼伦贝尔市| 黄龙县| 乐都县| 竹溪县| 临城县| 潮州市| 常熟市| 灵寿县| 屏山县| 通河县| 龙门县| 高尔夫| 琼结县| 福海县|