protected void DropDownClick(object sender, EventArgs e)
 {
     if (DropDownListReporte.Text == "1.- ¿Cuando fue la última vez que fuiste al dentista?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(4);
     }
     if (DropDownListReporte.Text == "2.- ¿Motivo de tu última consulta dental?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(5);
     }
     if (DropDownListReporte.Text == "3.- ¿Como califica su boca?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(6);
     }
     if (DropDownListReporte.Text == "4.- ¿Cuantas veces al día cepilla su boca?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(11);
     }
     if (DropDownListReporte.Text == "5.- ¿Te sangran las encías cuando te cepillas los dientes?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(12);
     }
     if (DropDownListReporte.Text == "6.- ¿Has presentado mal aliento?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(13);
     }
 }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                DropDownListReporte.Items.Clear();
                DropDownListReporte.Items.Add(new ListItem("Seleccione una opción:"));
                DropDownListReporte.Items.Add(new ListItem("1.- ¿La UPT fue tu primera opción?"));
                DropDownListReporte.Items.Add(new ListItem("2.- ¿La carrera que elegiste fue tu primera opción?"));
                DropDownListReporte.Items.Add(new ListItem("3.- ¿Qué tan satisfecho estás con la elección de tu carrera?"));
                DropDownListReporte.Items.Add(new ListItem("4.- ¿Sabes cuál es tu perfil vocacional?"));
                DropDownListReporte.Items.Add(new ListItem("5.- ¿Cuál es el acontecimiento más relevante de tu infancia (0-9 años)?"));
                DropDownListReporte.Items.Add(new ListItem("6.- ¿Cuál es el acontecimiento más relevante de tu adolescencia (10-19 años)?"));
                DropDownListReporte.Items.Add(new ListItem("7.- ¿Cómo consideras que es tu autoestima?"));
                DropDownListReporte.Items.Add(new ListItem("8.- ¿Cómo consideras tu capacidad para relacionarte con otras personas?"));
                DropDownListReporte.Items.Add(new ListItem("9.- ¿Tienes un proyecto de vida?"));
                DropDownListReporte.Items.Add(new ListItem("10.- ¿Cuantas horas duermes diariamente?"));

                DropDownListExportar.Items.Clear();
                DropDownListExportar.Items.Add(new ListItem("PDF"));
                DropDownListExportar.Items.Add(new ListItem("WORD"));
                DropDownListExportar.Items.Add(new ListItem("EXCEL"));
                DropDownListExportar.Items.Add(new ListItem("PNG"));
                WReporteVista = new WReporte(this);
                WReporteVista.obtenerDatosReporte(10);
            }
        }
Пример #3
0
 private void LlenadoComboEspecialista(DropDownList Combo, int Opcion, string Id)
 {
     WReporteVista = new WReporte(this);
     WReporteVista.ListarEspecilistas(Opcion, Id);/// se implementa el llenado de la interfaz
     if (listaDatos != null)
     {
         foreach (CReporte item in listaDatos)
         {
             Combo.Items.Add(new ListItem(item.Descripcion, item.Id.ToString()));
         }
     }
 }
 protected void DropDownClick(object sender, EventArgs e)
 {
     if (DropDownListReporte.Text == "1.- ¿La UPT fue tu primera opción?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(7);
     }
     if (DropDownListReporte.Text == "2.- ¿La carrera que elegiste fue tu primera opción?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(8);
     }
     if (DropDownListReporte.Text == "3.- ¿Qué tan satisfecho estás con la elección de tu carrera?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(9);
     }
     if (DropDownListReporte.Text == "4.- ¿Sabes cuál es tu perfil vocacional?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(14);
     }
     if (DropDownListReporte.Text == "5.- ¿Cuál es el acontecimiento más relevante de tu infancia (0-9 años)?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(15);
     }
     if (DropDownListReporte.Text == "6.- ¿Cuál es el acontecimiento más relevante de tu adolescencia (10-19 años)?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(16);
     }
     if (DropDownListReporte.Text == "7.- ¿Cómo consideras que es tu autoestima?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(17);
     }
     if (DropDownListReporte.Text == "8.- ¿Cómo consideras tu capacidad para relacionarte con otras personas?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(18);
     }
     if (DropDownListReporte.Text == "9.- ¿Tienes un proyecto de vida?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(19);
     }
     if (DropDownListReporte.Text == "10.- ¿Cuantas horas duermes diariamente?")
     {
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporte(20);
     }
 }
Пример #5
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         DropDownListExportar.Items.Clear();
         DropDownListExportar.Items.Add(new ListItem("PDF"));
         DropDownListExportar.Items.Add(new ListItem("WORD"));
         DropDownListExportar.Items.Add(new ListItem("EXCEL"));
         DropDownListExportar.Items.Add(new ListItem("PNG"));
         //LLenar combo de carreras
         DropDownListEspecialista.Items.Clear();
         LlenadoComboEspecialista(DropDownListEspecialista, 2, "1");
         //fin de combo
         WReporteVista = new WReporte(this);
         WReporteVista.obtenerDatosReporteFecha(10, txtFechaInicio.Text, txtFechaFin.Text, int.Parse(DropDownListEspecialista.SelectedValue));
     }
 }
        protected void DropDownClick(object sender, EventArgs e)
        {
            if (DropDownListReporte.Text == "1.- Alimentación diaría")
            {
                WReporteVista = new WReporte(this);
                WReporteVista.obtenerDatosReporte(1);
            }
            if (DropDownListReporte.Text == "2.- ¿Cuantas veces realizas ejercicio?")
            {
                WReporteVista = new WReporte(this);
                WReporteVista.obtenerDatosReporte(2);
            }

            if (DropDownListReporte.Text == "3.- ¿Cual es su grupo sanguineo?")
            {
                WReporteVista = new WReporte(this);
                WReporteVista.obtenerDatosReporte(3);
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                DropDownListReporte.Items.Clear();
                DropDownListReporte.Items.Add(new ListItem("Seleccione una opción:"));
                DropDownListReporte.Items.Add(new ListItem("1.- Alimentación diaría"));
                DropDownListReporte.Items.Add(new ListItem("2.- ¿Cuantas veces realizas ejercicio?"));
                DropDownListReporte.Items.Add(new ListItem("3.- ¿Cual es su grupo sanguineo?"));

                DropDownListExportar.Items.Clear();
                DropDownListExportar.Items.Add(new ListItem("PDF"));
                DropDownListExportar.Items.Add(new ListItem("WORD"));
                DropDownListExportar.Items.Add(new ListItem("EXCEL"));
                DropDownListExportar.Items.Add(new ListItem("PNG"));
                WReporteVista = new WReporte(this);
                WReporteVista.obtenerDatosReporte(10);
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                DropDownListReporte.Items.Clear();
                DropDownListReporte.Items.Add(new ListItem("Seleccione una opción:"));
                DropDownListReporte.Items.Add(new ListItem("1.- ¿Cuando fue la última vez que fuiste al dentista?"));
                DropDownListReporte.Items.Add(new ListItem("2.- ¿Motivo de tu última consulta dental?"));
                DropDownListReporte.Items.Add(new ListItem("3.- ¿Como califica su boca?"));
                DropDownListReporte.Items.Add(new ListItem("4.- ¿Cuantas veces al día cepilla su boca?"));
                DropDownListReporte.Items.Add(new ListItem("5.- ¿Te sangran las encías cuando te cepillas los dientes?"));
                DropDownListReporte.Items.Add(new ListItem("6.- ¿Has presentado mal aliento?"));

                DropDownListExportar.Items.Clear();
                DropDownListExportar.Items.Add(new ListItem("PDF"));
                DropDownListExportar.Items.Add(new ListItem("WORD"));
                DropDownListExportar.Items.Add(new ListItem("EXCEL"));
                DropDownListExportar.Items.Add(new ListItem("PNG"));
                WReporteVista = new WReporte(this);
                WReporteVista.obtenerDatosReporte(10);
            }
        }
Пример #9
0
 public void verReporte_Click(object sender, EventArgs e)
 {
     WReporteVista = new WReporte(this);
     WReporteVista.obtenerDatosReporteFecha(10, txtFechaInicio.Text, txtFechaFin.Text, int.Parse(DropDownListEspecialista.SelectedValue));
 }