コード例 #1
0
 protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
 {
     if (e.CommandName == "d")
     {
         int CommentID = Convert.ToInt32(e.CommandArgument);
         bll.Delete(CommentID);
         BindData(AspNetPager.CurrentPageIndex);
     }
 }