对于我的编程类,我刚开始使用GridView作为电影数据库表,现在我正在实现编辑,更新和删除功能。我得到了编辑和更新工作,但更新给了我麻烦。
当我点击更新时,我的所有行都更新为相同的内容(示例:我编辑电影标题,所有行都更改为相同的电影标题)。我不确定我的标签是否在某处混淆了。
我的数据库表: 注意:我也使用的代码是类中的一个示例,类中的一个代码可以工作,但出于某种原因,我的代码没有。
以下是我的代码示例。
<asp:GridView runat="server" ID="MovieResults" Wrap="true" Visible="false" AutoGenerateColumns="false"
OnRowEditing="btnSubmit_Click_one" OnRowUpdating="btnSubmit_update_record"
DataKeyNames="MovieID" OnRowDeleting="btnSubmit_delete_record">
<Columns>
<asp:BoundField DataField="MovieTitle" HeaderText="Movie" />
<asp:BoundField DataField="DateChecked" HeaderText="Date Checked" />
<asp:BoundField DataField="CheckedOut" HeaderText="Checked Out" />
<asp:BoundField DataField="MovieDescription" HeaderText="Description" />
<asp:ImageField DataImageUrlField="ImageLocation" ControlStyle-Width="50"
ControlStyle-Height = "50" HeaderText = "Movie Image" />
<asp:CommandField ShowEditButton="true" ShowDeleteButton="true" />
</Columns>
</asp:GridView>
cs文件
public void btnSubmit_update_record(Object Src, GridViewUpdateEventArgs e)
{
get_connection();
try
{
int id = int.Parse(MovieResults.DataKeys[e.RowIndex].Value.ToString());
connection.Open();
command = new SqlCommand("UPDATE content SET MovieTitle=@MovieTitle, MovieDescription=@MovieDescription WHERE TRUE", connection);
//command.Parameters.AddWithValue("@MovieID",
//((TextBox)MovieResults.Rows[e.RowIndex].Cells[0].Controls[0]).Text.ToString());
command.Parameters.AddWithValue("@MovieTitle",
((TextBox)MovieResults.Rows[e.RowIndex].Cells[0].Controls[0]).Text.ToString());
command.Parameters.AddWithValue("@MovieDescription",
((TextBox)MovieResults.Rows[e.RowIndex].Cells[3].Controls[0]).Text.ToString());
command.ExecuteNonQuery();
}
catch (Exception err)
{
// Handle an error by displaying the information.
lblInfo.Text = "Error reading the database. ";
lblInfo.Text += err.Message;
}
finally
{
// Either way, make sure the connection is properly closed.
// (Even if the connection wasn't opened successfully,
// calling Close() won't cause an error.)
connection.Close();
lblInfo.Text += "<br /><b>Update was successfull</b> ";
lblInfo.Text += connection.State.ToString();
}
}
答案 0 :(得分:0)
您在RowUpdating
活动中遗漏了一些代码。您必须在更新或删除或编辑操作后对网格进行数据绑定,否则您的网格将无法显示正确的数据。
因此,我们假设您有一个获取gridview数据的方法,它被称为GetMoviesData()
。然后,在btnSubmit_update_record
方法结束时,您必须包含以下代码。
MovieResults.EditIndex = -1;
MovieResults.DataSource = GetMoviesData();
MovieResults.DataBind();