
实现方法:
在后台的GridView1_RowDataBound()方法添加代码,最后代码如下所示:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
//如果是绑定数据行
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
{
((LinkButton)e.Row.Cells[6].Controls[0]).Attributes.Add("onclick", "javascript:return confirm('你确认要删除:/"" + e.Row.Cells[1].Text + "/"吗?')");
}
}
}
本文介绍如何在ASP.NET中使用GridView控件时为删除操作添加弹窗确认功能。通过监听OnRowDataBound事件并在GridView1_RowDataBound方法中编写代码,可以实现在点击删除按钮前显示确认提示。
2217

被折叠的 条评论
为什么被折叠?



