protected void btnAccountTypeSave_Click(object s, EventArgs e)
 {
     try
     {
         TechnicalBAL objtechBAL = new TechnicalBAL();
         objtechBAL.Update_AccountType(Request.QueryString["REQUISITION_CODE"].ToString(), ddlAccountType.SelectedValue, txtTypeRemark.Text, UDFLib.ConvertToInteger(GetSessionUserID()));
         BindRequisitionSummary();
         //BindReqsTypeLog();
         txtTypeRemark.Text = string.Empty;
         string hidemodal = String.Format("hideModal('dvAccountType')");
         ScriptManager.RegisterStartupScript(Page, Page.GetType(), "hidemodal", hidemodal, true);
     }
     catch (Exception ex)
     {
         UDFLib.WriteExceptionLog(ex);
     }
 }