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

 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, "编号") + "')"); 
        }
     } 

posted on 2006-07-18 23:31  xh3  阅读(732)  评论(4编辑  收藏  举报

导航