我有一个formview.Users填充并单击保存按钮。当插入的项目进入插入的项目页面时。 我的问题不是关于插入或页面刷新后。当用户点击保存按钮时,它开始插入,但如果用户点击多次点击(我尝试了20次点击并成功),插入时会一次又一次地插入。
为了防止我使用此代码
protected void frmPostAdd_ItemInserting(object sender, FormViewInsertEventArgs e)
{
Button btnSave = (Button)frmPostAdd.FindControl("btnSave ");
btnSave.Enabled = false;
btnSave.Text = "Saving...";
}
没有任何改变。用户可以单击并插入多个。
如何以最好的方式解决这个问题?