Beispiel #1
0
 protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
 {
     if (e.CommandName == "delete")
     {
         zs.BLL.Tbl_Zhuanye bll = new zs.BLL.Tbl_Zhuanye();
         bll.Delete(int.Parse(e.CommandArgument.ToString()));
         BindData();
     }
 }
Beispiel #2
0
 private void BindData()
 {
     zs.BLL.Tbl_Zhuanye bll = new zs.BLL.Tbl_Zhuanye();
     UsersBind(bll.GetModelList(""), 15);
 }