private void Page_Load(object sender, System.EventArgs e) { Utils.startUp(this); this.iFrame_sx.NavigateTo = "sceltaRuoloNew.aspx"; if (!this.IsPostBack) { int numDelega = DelegheManager.VerificaDelega(this); string autoList = ConfigSettings.getKey("AUTO_TO_DO_LIST"); if ((autoList != null) && (Utils.isNumeric(autoList)) && numDelega < 1) { if (autoList.Equals("1")) { this.iFrame_dx.NavigateTo = "waitingpage.htm"; } else { this.iFrame_dx.NavigateTo = "blank_page.htm"; } } else { if ((numDelega > 0) && (Session["ESERCITADELEGA"] == null)) { string messaggio = InitMessageXml.getInstance().getMessage("ESERCITA_DELEGA"); msg_delega.Confirm(messaggio); } } } }
/// <summary> /// Crea, se non esiste, l’istanza della classe e inizializza gli attributi /// utilizzando il metodo initializeMessage /// </summary> /// <returns></returns> public static InitMessageXml getInstance() { if (itsInstance == null || (itsInstance != null && messageHashTable.Count == 0)) { itsInstance = new InitMessageXml(); itsInstance.initializeMessage(getKey("MessageFilePath")); } return(itsInstance); }