1

我无法在 gridview 中编辑详细信息。当我单击编辑链接(命令字段)时,会触发行编辑事件,但是当我单击更新链接时,会再次触发行编辑事件并且根本不会触发更新事件。

有什么建议么 ??

4

1 回答 1

1

示例代码:可能您应该尝试使用调试器并检查。这里我给你举了一个例子。

  protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {

        // Retrieve the row being edited.
        int index = GridView1.EditIndex;
        GridViewRow row = GridView1.Rows[index];
        TextBox t1 = row.FindControl("TextBox1") as TextBox;
        TextBox t2 = row.FindControl("TextBox2") as TextBox;
        string t3 = GridView1.DataKeys[e.RowIndex].Value.ToString();

        lblMsg.Text = "Updated record " + t1.Text + "," + t2.Text + "Value From Bound Field" + t3;
    }
于 2013-08-26T08:30:43.653 回答