双击GridView的OnRowDataBound事件;
在后台的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 + "\"吗?')");
            }
        }    
   }

相关文章:

  • 2021-11-27
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2021-11-04
  • 2021-09-19
猜你喜欢
  • 2021-11-22
  • 2021-08-28
  • 2022-12-23
  • 2022-12-23
  • 2022-01-26
相关资源
相似解决方案