Ejemplo n.º 1
0
 protected void btnSaveAllotment_Click(object sender, EventArgs e)
 {
     try
     {
         objCrew.CRW_CD_UPD_BankAllotment(UDFLib.ConvertToInteger(Request.QueryString["CrewID"]), rdoOptAllotment.SelectedValue.ToString());
         string js2 = "parent.hideModal('dvPopupFrame');parent.GetCrewBankAcc(" + HiddenField_CrewID.Value.ToString() + ");";
         ScriptManager.RegisterStartupScript(this, this.GetType(), "msg", js2, true);
     }
     catch (Exception ex)
     {
         UDFLib.WriteExceptionLog(ex);
     }
 }