/// <summary> /// VIEWSTATE PARA VARIABLES GLOBALES /// </summary> private void Establecer_Globales() { try { ViewState["GlobalesObjetoInterfaz"] = new GlobalesObjetoInterfaz(); } catch { throw; } }
/// <summary> /// VIEWSTATE PARA VARIABLES GLOBALES /// </summary> private GlobalesObjetoInterfaz V_Global() { GlobalesObjetoInterfaz item = new GlobalesObjetoInterfaz(); try { item = (GlobalesObjetoInterfaz)ViewState["GlobalesObjetoInterfaz"] ?? null; return(item); } catch { return(item); } }