protected void lstItem_ItemCommand(object source, System.Web.UI.WebControls.DataListCommandEventArgs e) { HtmlInputCheckBox chkList = null; string stParam = string.Empty; chkList = (HtmlInputCheckBox)e.Item.FindControl("chkList"); switch (e.CommandName) { case "imgItemDelete": ProductGroupUnitsMatrix clsUnitMatrix = new ProductGroupUnitsMatrix(); clsUnitMatrix.Delete(chkList.Value); clsUnitMatrix.CommitAndDispose(); LoadList(); break; case "imgItemEdit": stParam = "?task=" + Common.Encrypt("edit", Session.SessionID) + "&subgroupid=" + Common.Encrypt(lblSubGroupID.Text, Session.SessionID) + "&id=" + Common.Encrypt(chkList.Value, Session.SessionID); Response.Redirect("Default.aspx" + stParam); break; } }
private bool Delete() { bool boRetValue = false; string stIDs = ""; foreach(DataListItem item in lstItem.Items) { HtmlInputCheckBox chkList = (HtmlInputCheckBox) item.FindControl("chkList"); if (chkList!=null) { if (chkList.Checked == true) { stIDs += chkList.Value + ","; boRetValue = true; } } } if (boRetValue) { ProductGroupUnitsMatrix clsUnitMatrix = new ProductGroupUnitsMatrix(); clsUnitMatrix.Delete(stIDs.Substring(0,stIDs.Length-1)); clsUnitMatrix.CommitAndDispose(); } return boRetValue; }