protected void DelBtn_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(Request.Form["idchk"]))
     {
         sll.DelByIDS(Request.Form["idchk"]);
     }
 }
Esempio n. 2
0
 public int School_Del(string ids)
 {
     schBll.DelByIDS(ids);
     return(Success);
 }