protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (Request.QueryString["op"] != null) { if (Request.QueryString["op"] == "2") { if (Request.QueryString["id"] != null) { string ID = Request.QueryString["id"].ToString(); RR_PropuestaCamapaña Datos = new RR_PropuestaCamapaña { Conexion = Comun.Conexion, IDPropuesta = ID }; RR_AdministradorWebNegocio AWN = new RR_AdministradorWebNegocio(); Lista = AWN.ObtenerPropuestaDetallada(Datos); this.CargarPropuestas(); } else { } } else { } } else { } } else { } }