GridView中删除按钮的确认提示

在GridView中添加删除按钮列,并将其转换为模板列

接下来,就是在该按钮上添加提示信息

方法一:提示删除确认信息,最简单的方法就是编辑模板,在删除按钮的OnClientClick上添加“ return confirm("确认删除该条信息?")”此方法无法确认具体删除的是哪一条信息。

方法二:提示删除确认信息,可具体到提示删除的是哪一条信息。

添加GridView_RowDataBound事件,代码如下:

protected void gvUserList_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { LinkButton button = (LinkButton)e.Row.FindControl("lbtnUserDel"); string username = e.Row.Cells[1].Text; button.Attributes.Add("onclick", string.Format("return confirm('确实要删除用户{0}吗?')", username)); } }

效果如图:

你可能感兴趣的:(object,String,button)