gridview 删除提示框

  ////删除提示框
    //protected void condition_RowDataBound(object sender, GridViewRowEventArgs e)
    //{
    //    if (e.Row.RowType == DataControlRowType.DataRow)
    //    {
    //        if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
    //        {
    //            ((ImageButton)e.Row.Cells[2].Controls[0]).Attributes.Add("onclick", "javascript:return   confirm('你确认要删除吗?')");
    //        }
    //    }
    //}
原文地址:https://www.cnblogs.com/puke/p/1313577.html