2

来自德国的美好下午,

我在带有 RowCommand 事件的行上有一个 asp:GridView 和 ButtonFields。

protected void gridView_RowCommand(object sender, GridViewCommandEventArgs e)
{
    switch (e.CommandName)
    {
        case "FirstButton":
            this.DoSomething();
            break;
        case "SecondButton":
            this.DoSomethingElse();
            break;
    }
    this.BindDataGrid();
}

我的问题是在超过 90% 的情况下,当我点击 ButtonField 时,此事件会引发两次。这个问题是在我执行this.DoSomething()this.DoSomethingElse()特定行无法再次执行之后。

谢谢马克
_

4

1 回答 1

0

为什么要调用 this.BindDataGrid?没有这个,你的解决方案就不能工作吗?这将导致第二次运行rowcommand。

于 2011-12-25T18:04:30.150 回答