예제 #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Session["usuario"] == null)
        {
            Response.RedirectToRoute("thor");
        }
        if (!IsPostBack)
        {
            DataTable dtCompanias = new DataTable();
            dtCompanias = Reporte.ListarCompanias();
            lbxCompania.DataTextField  = "com_Nombre";
            lbxCompania.DataValueField = "com_Id";
            lbxCompania.DataSource     = dtCompanias;
            lbxCompania.DataBind();
            lbxCompania.Items.Insert(0, new ListItem("(TODOS)", "ALL"));

            DataTable dtProductos = new DataTable();
            dtProductos = Reporte.ListarProductosPorFiltros("ALL");
            lbxProducto.DataTextField  = "pro_Nombre";
            lbxProducto.DataValueField = "pro_Nombre";
            lbxProducto.DataSource     = dtProductos;
            lbxProducto.DataBind();
            lbxProducto.Items.Insert(0, new ListItem("(TODOS)", "ALL"));

            DataTable dtEstadoNegocios = new DataTable();
            dtEstadoNegocios = Reporte.ListarEstadosNegocioCertificados();
            lbxEstadoNegocio.DataTextField  = "cer_EstadoNegocio";
            lbxEstadoNegocio.DataValueField = "cer_EstadoNegocio";
            lbxEstadoNegocio.DataSource     = dtEstadoNegocios;
            lbxEstadoNegocio.DataBind();
            lbxEstadoNegocio.Items.Insert(0, new ListItem("(TODOS)", "ALL"));

            DataTable dtDepartamentos = new DataTable();
            dtDepartamentos = Reporte.mostrarDepartamento();
            lbxDepartamento.DataTextField  = "dep_Nombre";
            lbxDepartamento.DataValueField = "dep_Id";
            lbxDepartamento.DataSource     = dtDepartamentos;
            lbxDepartamento.DataBind();
            lbxDepartamento.Items.Insert(0, new ListItem("(TODOS)", "ALL"));

            DataTable dtCiudades = new DataTable();
            dtCiudades = Reporte.ConsultarCiudadDdl();
            lbxCiudad.DataTextField  = "ciu_Nombre";
            lbxCiudad.DataValueField = "ciu_Id";
            lbxCiudad.DataSource     = dtCiudades;
            lbxCiudad.DataBind();
            lbxCiudad.Items.Insert(0, new ListItem("(TODOS)", "ALL"));
        }
    }