C#datagridview利用主键删除一行 求详细代码

if(dataGridView1.SelectedRows.Count>0){if(DialogResult.OK==MessageBox.Show("确定要删除?","... if (dataGridView1.SelectedRows.Count > 0)
{
if (DialogResult.OK == MessageBox.Show("确定要删除?", "系统提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
{
int idl = 0;
idl = Int32.Parse(this.dataGridView1.CurrentRow.Cells[0].Value.ToString());
userbll.Delete(idl);
this.usertabTableAdapter.Fill(this.sensorDataSet.usertab);
}
}
else
{
MessageBox.Show("请选择一行");
}
这是我编写的butten事件 运行后没有反应
展开
 我来答
既来事在鸡年9521
2011-08-20 · TA获得超过5.9万个赞
知道大有可为答主
回答量:3.8万
采纳率:0%
帮助的人:5083万
展开全部
public bool DeleteProduct(int productID)
{
bool X;
SqlConnection conn = new SqlConnection
("Data Source=;initial catalog=;user id=sa;pwd =;");
conn.Open();
string delete = "delete from [Products Information] where ProductsID='" + productID + "'";
//Create a connection to DataBase.
SqlCommand cmd1 = new SqlCommand(delete, conn);
int i = cmd1.ExecuteNonQuery();
if (i != 0)
{ X = true; }
else
{
X = false;
}
return X;
}

protected void GridView1_RowDeleting1(object sender, GridViewDeleteEventArgs e)
{
int productID = Convert.ToInt32(((Label)(GridView1.Rows[e.RowIndex].FindControl("Label1"))).Text);
//Get the ID of the table ProductsInformation.
bool success = DeleteProduct(productID);

if (success)
{

Response.Write("<script>alert('Delete successfully')</script>");
Response.Redirect("AdminHomepage.aspx");
}
else
{
Response.Write("<script>alert('Delete not successfully')</script>");

}

}
wubeichuan
2011-08-19 · TA获得超过294个赞
知道小有建树答主
回答量:235
采纳率:0%
帮助的人:146万
展开全部
删了之后你要 DataBind啊。 删了之后你不刷新就只能去数据库才能看到有反映咯- -!
追问
问题是运行后去数据库看都没反应
追答
userbll.Delete(idl) 这句是删除的把
断点这个一句去 调试咯
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
满秀敏02H
2011-08-19 · TA获得超过217个赞
知道答主
回答量:212
采纳率:0%
帮助的人:138万
展开全部
把这句代码
Int32.Parse(this.dataGridView1.CurrentRow.Cells[0].Value.ToString());
换成

Int32.Parse(this.dataGridView1.DataKeys.[这里放你要删除的那行的索引].ToString());

你得注意一下DataKeys要在dataGridView属性中加一个主键字段就可以了

给我加分,我回答得挺辛苦!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友103af8c
2011-08-19
知道答主
回答量:36
采纳率:0%
帮助的人:15万
展开全部
自己加断点一步步调,确认到哪步出问题再看,万一你这事件都没触发呢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
justin_wkf
2011-08-19 · TA获得超过231个赞
知道小有建树答主
回答量:505
采纳率:58%
帮助的人:148万
展开全部
1,gridview中是否有select按钮
2,你要删除行直接在gridview delete事件里写不就行了
3,删除后gridview要重新绑定数据源
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
这个被注册了吧
2011-08-19 · 超过34用户采纳过TA的回答
知道答主
回答量:118
采纳率:0%
帮助的人:97万
展开全部
你调试下 idl有值吗
追问
有值
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式