コード例 #1
0
 protected void grd_Class_ItemCommand(object sender, Telerik.Web.UI.GridCommandEventArgs e)
 {
     if (e.CommandName == "delete")
     {
         int commandArgs = int.Parse(e.CommandArgument.ToString());
         ExamBusiness.DeleteExamClassSavedById(commandArgs);
         bindgrid();
     }
 }