public SKD()
 {
     presentador = new PresentadorMasterPage(this);
 }
Exemple #2
0
 public MasterPage()
 {
     presentador = new PresentadorMasterPage(this);
 }
        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                if (!IsPostBack)
                {
                    presentador = new PresentadorMasterPage(this);
                    cargarMenus();
                }
            }
            catch (NullReferenceException ex)
            {

                Response.Redirect(RecursosInterfazModulo1.direccionM1_Index);
            }
            catch (Exception ex)
            {

            }
        }