serkan sendur 821 Postaholic Banned Featured Poster

protected void gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton db = (LinkButton)e.Row.Cells[0].Controls[0];
db.OnClientClick = "return confirm('Are you certain you want to delete the item?');"
}
}