Esempio n. 1
0
 protected void btnBankOut_Click(object sender, EventArgs e)
 {
     try
     {
         RmsOA.BFL.GK_OA_MeetSummaryBFL bfl = new RmsOA.BFL.GK_OA_MeetSummaryBFL();
         bfl.ModifyBankOutAuditing(int.Parse(this.MeetFormView.DataKey.Value.ToString()));
     }
     catch (Exception ex)
     {
         ApplicationLog.WriteLog(this.ToString(), ex, "");
         Response.Write(Rms.Web.JavaScript.Alert(true, "作废出错:" + ex.Message));
         throw ex;
     }
 }