Exemplo n.º 1
0
 protected void btnDelete_Click(object sender, EventArgs e)
 {
     try
     {
         TheCycleCountMgr.DeleteCycleCount(this.OrderNo);
         ShowSuccessMessage("Common.Business.Result.Delete.Successfully");
         if (BackEvent != null)
         {
             BackEvent(sender, e);
         }
     }
     catch (BusinessErrorException ex)
     {
         ShowErrorMessage(ex);
     }
 }