0

我的插入和删除功能工作正常,但编辑功能出现问题。编辑功能仅适用于该行的第一行,但如果我尝试编辑第二行或第三行,则会收到此错误:“必须声明标量变量“@Post_ID”这是我的代码:

GridViewRow row = (GridViewRow)GridView1.Rows[e.RowIndex];
        int id = Int32.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
        TextBox date = (TextBox)row.FindControl("date");

        SqlCommand cmd = new SqlCommand();
        cmd.CommandText =    "update t_your_table " +
                             "set " +                                 
                             "date = @date, " +             
                             " time = @time  where id = @ID "                             


    cmd.Parameters.Add("@id", SqlDbType.VarChar).Value = id;           
    cmd.Parameters.Add("@date", SqlDbType.VarChar).Value = date.Text;      
4

1 回答 1

0

您正在对这段代码中的行进行硬编码:

TextBox myTextBox11 = GV_InlineEditing.Rows[0].FindControl("GV_Post_ID") as TextBox;

.Rows[0]无论状态如何,总会找到第一行。您可能希望使用EditIndex 属性查看正在编辑的行。

于 2012-11-09T21:06:05.257 回答