private void DeleteCustomerProfile() { try { customerVo = (CustomerVo)Session["CustomerVo"]; userVo = (UserVo)Session[SessionContents.UserVo]; if (customerBo.DeleteCustomer(customerVo.CustomerId, "D")) { Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "leftpane", "loadcontrol('RMCustomer','none');", true); } } catch (BaseApplicationException Ex) { throw Ex; } catch (Exception Ex) { BaseApplicationException exBase = new BaseApplicationException(Ex.Message, Ex); NameValueCollection FunctionInfo = new NameValueCollection(); FunctionInfo.Add("Method", "ViewCustomerIndividualProfile.ascx:btnDelete_Click()"); object[] objects = new object[3]; objects[0] = customerVo; //objects[1] = userVo; FunctionInfo = exBase.AddObject(FunctionInfo, objects); exBase.AdditionalInformation = FunctionInfo; ExceptionManager.Publish(exBase); throw exBase; } }
protected void btnDelete_Click(object sender, EventArgs e) { try { customerVo = (CustomerVo)Session["CustomerVo"]; userVo = (UserVo)Session[SessionContents.UserVo]; hdnassociationcount.Value = customerBo.GetAssociationCount("C", customerVo.CustomerId).ToString(); string asc = Convert.ToString(hdnassociationcount.Value); if (asc == "0") { if (customerBo.DeleteCustomer(customerVo.CustomerId, "D")) { Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "leftpane", "loadcontrol('RMCustomer','none');", true); } } else { Page.ClientScript.RegisterStartupScript(this.GetType(), "Message", "showassocation();", true); } } catch (BaseApplicationException Ex) { throw Ex; } catch (Exception Ex) { BaseApplicationException exBase = new BaseApplicationException(Ex.Message, Ex); NameValueCollection FunctionInfo = new NameValueCollection(); FunctionInfo.Add("Method", "ViewNonIndividualProfile.ascx:btnDelete_Click()"); object[] objects = new object[2]; objects[0] = customerVo; objects[2] = userVo; FunctionInfo = exBase.AddObject(FunctionInfo, objects); exBase.AdditionalInformation = FunctionInfo; ExceptionManager.Publish(exBase); throw exBase; } }