网格视图批量更新

本文关键字:更新 视图 网格 | 更新日期: 2023-09-27 18:34:28

从这个链接:

asp.net 网格视图批量更新所有单元格

我做了以下工作:

 protected void ButtonUpdate_Click(object sender, EventArgs e)
    {
       // foreach (GridViewRow row in GridView1.Rows)
       // {
        int RowIndex = 0;
        GridViewRow row = (GridViewRow)GridView1.Rows[RowIndex];
            Int32 intresortID = Convert.ToInt32(Request.QueryString["TypeID"]);
            Label dtm = row.FindControl("Label1") as Label;
            Label strRoomType = row.FindControl("strRoomTypeLabel") as Label;
            Label strDescription = row.FindControl("Label3") as Label;
            TextBox Qty = row.FindControl("intQtyTextBox") as TextBox;
            TextBox Price = row.FindControl("curPriceTextBox") as TextBox;
            Label intWSCode = row.FindControl("intWSCodeLabel") as Label;
            string connStr = ConfigurationManager.ConnectionStrings["bedbankstandssConnectionString"].ConnectionString;
            SqlConnection Con = new SqlConnection(connStr);
            SqlCommand cmd = new SqlCommand("Update tblAvailable set intqty=@intQty, curprice=@curprice where intresortid=@intresortid and dtm=@dtm and strroomtype=@strroomtype",Con);

            //SqlParameter ddtm= new SqlParameter("@dtm",dtm) ;
            //SqlParameter sstrRoomType = new SqlParameter("@strroomtype", strRoomType);
            //SqlParameter qQty = new SqlParameter("@intQty", Qty);
            //SqlParameter pPrice =new SqlParameter("@curPrice",Price);
            //SqlParameter resortID = new SqlParameter("@intResortID", intresortID);
            cmd.Parameters.AddWithValue("@dtm",dtm.Text.Trim());
            cmd.Parameters.AddWithValue("@strroomtype",strRoomType.Text.Trim());
            cmd.Parameters.AddWithValue("@intQty", Qty.Text.Trim());
            cmd.Parameters.AddWithValue("@curPrice",Price.Text.Trim());
            cmd.Parameters.AddWithValue("@intResortID",intresortID);
            Con.Open();
            cmd.ExecuteNonQuery();
            GridView1.EditIndex = -1;
            DataBind();


       // }
    }

但只有一行被更新,即第一行。

请问有人能告诉我哪里出错了。

网格视图批量更新

您已经注释掉了循环,那么为什么您想知道只更新了一行?

foreach (GridViewRow row in GridView1.Rows)
{
    // ...
}

除此之外,请使用using-statement进行SqlConnectionSqlCommand,以确保将其处置/关闭。

using(SqlConnection Con = new SqlConnection(connStr))
{
    using(SqlCommand cmd = new SqlCommand("Update tblAvailable set intqty=@intQty, curprice=@curprice where intresortid=@intresortid and dtm=@dtm and strroomtype=@strroomtype",Con))
    {
        // ...
    }
}