我有一个gridview,其中我绑定了模板字段。delete
命令工作正常,但update
命令不起作用。
这是我的aspx代码:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="User_ID" onrowcancelingedit="GridView1_RowCancelingEdit"
onrowdeleting="GridView1_RowDeleting" onrowediting="GridView1_RowEditing"
onrowupdating="GridView1_RowUpdating" style="margin-top: 15px">
<Columns>
<asp:TemplateField AccessibleHeaderText="User_ID" HeaderText="User_ID">
<EditItemTemplate>
<asp:TextBox ID="TXT_ID" runat="server" Text='<%# Eval("User_ID") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="txt_id" runat="server" Text='<%# Eval("User_ID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField AccessibleHeaderText="Name " HeaderText="Name">
<EditItemTemplate>
<asp:TextBox ID="TXT_NAME" runat="server" Text='<%# Eval("Name") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="txtName" runat="server" Text='<%# Eval("Name") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField AccessibleHeaderText="User_Name" HeaderText="User_Name">
<EditItemTemplate>
<asp:TextBox ID="TXT_USERNAME" runat="server" Text='<%# Eval("User_Name") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="txt_username" runat="server" Text='<%# Eval("User_Name") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField AccessibleHeaderText="Email" HeaderText="Email">
<EditItemTemplate>
<asp:TextBox ID="TXT_EMAIL" runat="server" Text='<%# Eval("Email") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="txt_email" runat="server" Text='<%# Eval("Email") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField AccessibleHeaderText="Password" HeaderText="Password">
<EditItemTemplate>
<asp:TextBox ID="TXT_PASSWORD" runat="server" Text='<%# Eval("Password") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="txt_password" runat="server" Text='<%# Eval("Password") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField AccessibleHeaderText="Date" HeaderText="Date">
<EditItemTemplate>
<asp:TextBox ID="TXT_DATE" runat="server" Text='<%# Eval("Date") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="txt_Date" runat="server" Text='<%# Eval("Date") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:CommandField ShowEditButton="True" />
<asp:CommandField ShowDeleteButton="True" />
</Columns>
</asp:GridView>
这里是ASPX.CS代码:
SqlConnection cnn = new SqlConnection("Data Source=LIFE_WELL; Initial catalog=db_compiler; Integrated security=true");
protected void Page_Load(object sender, EventArgs e)
{
get();
}
public void get()
{
SqlCommand cmd = new SqlCommand("SELECT User_ID,Name,User_Name,Email,Password,Date FROM tbl_user", cnn);
SqlDataAdapter adp = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
adp.Fill(dt);
cnn.Open();
cmd.ExecuteNonQuery();
GridView1.DataSource = dt;
GridView1.DataBind();
cnn.Close();
}
protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
{
GridView1.EditIndex = -1;
get();
}
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
{
Label txtlbl = (Label)GridView1.Rows[e.NewEditIndex].Cells[1].FindControl("txt_id");
Session["ID"] = txtlbl.Text;
// Label txtName = (Label)GridView1.Rows[e.NewEditIndex].Cells[1].FindControl("txtName");
//Label txtUser = (Label)GridView1.Rows[e.NewEditIndex].Cells[1].FindControl("txt_username");
// Label txtEmail = (Label)GridView1.Rows[e.NewEditIndex].Cells[1].FindControl("txt_email");
// Label txtpassword = (Label)GridView1.Rows[e.NewEditIndex].Cells[1].FindControl("txt_password");
GridView1.EditIndex = e.NewEditIndex;
get();
}
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
int id = Int32.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
Delete(id);
get();
}
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
int id = Int32.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
// TextBox ID = (TextBox)GridView1.Rows[e.RowIndex].FindControl("TXT_ID");
TextBox Name = (TextBox)GridView1.Rows[e.RowIndex].FindControl("TXT_Name");
TextBox USERNAME = (TextBox)GridView1.Rows[e.RowIndex].FindControl("TXT_USERNAME");
TextBox EMAIL = (TextBox)GridView1.Rows[e.RowIndex].FindControl("TXT_EMAIL");
TextBox PASSWORD = (TextBox)GridView1.Rows[e.RowIndex].FindControl("TXT_PASSWORD");
//TextBox DATE = (TextBox)GridView1.Rows[e.RowIndex].FindControl("TXT_DATE");
updateTbl(id,Name.Text,USERNAME.Text,EMAIL.Text,PASSWORD.Text);
GridView1.EditIndex = -1;
get();
}
public void updateTbl(int id,string name,string username,string email,string pass)
{
try
{
string u= Session["ID"].ToString();
int i = Int32.Parse(u);
//String db = Session["value"].ToString();
//string RNquery = "USE " + db + " EXEC sp_rename '" + oldname + "', '" + newname + "'";
string updateQuery = "USE db_compiler Update tbl_user SET Name='" + name + "',User_Name='" + username + "',Email='" + email + "',Password='" + pass + "',Confirm_Password='" + pass + "' WHERE User_ID="+ id+"";
SqlCommand cmd2 = new SqlCommand(updateQuery, cnn);
// SqlCommand cmd = new SqlCommand(RNquery, cnn);
cnn.Open();
cmd2.ExecuteNonQuery();
//cmd.ExecuteNonQuery();
cnn.Close();
}
catch (SqlException ex)
{
Response.Write("<script>alert("+ ex.Message + ")</script>");
}
}
public void Delete(int id)
{
string QUERY = "USE db_compiler DELETE FROM tbl_user WHERE User_ID=" + id + "";
SqlCommand cmd = new SqlCommand(QUERY, cnn);
cnn.Open();
cmd.ExecuteNonQuery();
cnn.Close();
}
没有error
显示。但是没有更新的值。谢谢
答案 0 :(得分:1)
在gridview上使用以下属性,这将允许您获取新值而不是旧值
Enableviewstate="False"
答案 1 :(得分:0)
这种行为可能有不同的原因,如果你有一个try..catch结构的代码中发生了一个未知问题,那么你应该做的就是摆脱try..catch。例如,您的代码仅捕获SqlException,并且将忽略所有其他异常。即使它发生了SqlException,您也可以使用可能失败/忽略/等的js脚本输出其消息。删除try..catch并查看它是否提供任何输出。
如果仍然没有显示错误,您应该逐步调试代码。
将断点设置为updateTbl()并查看最终的sql语句的外观。将其复制粘贴到Sql Server Management Studio并尝试从那里执行它。可能是你错过了那里的东西。例如,在数据库中有一个Confirm_Password
列看起来很奇怪。确保所有列中的所有值都具有正确的值,id
已获得已编辑行的ID(以确保不更新不同的行,并且不使用旧值更新正确的行)。
代码中的其他问题:
有未使用的部分可能会调试复杂,例如
Label txtlbl = (Label)GridView1.Rows[e.NewEditIndex].Cells[1].FindControl("txt_id");
Session["ID"] = txtlbl.Text;
或
string u= Session["ID"].ToString();
int i = Int32.Parse(u);
编码风格有时很奇怪,例如
..." + id + "";
如果db只有一个并且在USE db_compiler
中设置,则似乎不需要在每个语句中调用...Initial catalog=db_compiler;...
。假设您需要将应用程序移动到另一个名为differenty的服务器上 - 您需要更改所有代码,因为其中包含硬编码USE db_compiler
。 (db的连接字符串也必须移动到web.config)。
答案 2 :(得分:0)
你回帖有问题,实际上在按下更新按钮之后你的页面会进行回发,你的更改/编辑的值会被旧值替换,所以你的记录会更新但是旧的值会让你看不到任何变化。 在按钮单击事件中使用此代码。这样你的页面就不会发回任何帖子了。
Response.Redirect(Request.RawUrl);