现在的位置: 首页 > 综合 > 正文

ASP.NET2.0下为GridView添加服务器端删除确认!

2012年12月06日 ⁄ 综合 ⁄ 共 403字 ⁄ 字号 评论关闭
protected void
GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
   
{
        //在服务器端添加删除确认
        if (e.Row.RowType ==
DataControlRowType.DataRow)
        {
             LinkButton btnDelete =
(LinkButton)e.Row.FindControl("LinkButton1");
            
btnDelete.Attributes.Add("onclick", "javascript:return " +"confirm('Are you sure
you want to delete this record " +DataBinder.Eval(e.Row.DataItem, "编号") + "')");

        }
     } 

抱歉!评论已关闭.