Ejemplo n.º 1
0
 public SKD()
 {
     presentador = new PresentadorMasterPage(this);
 }
Ejemplo n.º 2
0
 public MasterPage()
 {
     presentador = new PresentadorMasterPage(this);
 }
Ejemplo n.º 3
0
        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)
            {

            }
        }