protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                Listas = VendedoresBLL.ListarTodo();

                GridViewConsultaVendedores.DataSource = Listas;
                GridViewConsultaVendedores.DataBind();
            }
        }
        private void BuscarSelecCombo()
        {
            Listas = null;

            if (DropDownListFiltro.SelectedIndex == 0)
            {
                Listas = VendedoresBLL.ListarTodo();
            }
            else if (DropDownListFiltro.SelectedIndex == 1)
            {
                if (TextBoxFiltro.Text == "")
                {
                    base.Page.ClientScript.RegisterStartupScript(this.GetType(), "scripts", "<script>alert('Debe de Insertar la descripcion');</script>");
                }
                else
                {
                    int Busqueda = Utilidades.TOINT(TextBoxFiltro.Text);
                    Listas = VendedoresBLL.GetList(a => a.VendedoresId == Busqueda);
                    GridViewConsultaVendedores.DataSource = Listas;
                    GridViewConsultaVendedores.DataBind();
                }
            }
            else if (DropDownListFiltro.SelectedIndex == 2)
            {
                if (TextBoxFiltro.Text == "")
                {
                    base.Page.ClientScript.RegisterStartupScript(this.GetType(), "scripts", "<script>alert('Debe de Insertar la descripcion');</script>");
                }
                else
                {
                    int Busqueda = Utilidades.TOINT(TextBoxFiltro.Text);
                    Listas = VendedoresBLL.GetList(a => a.VendedoresId == Busqueda);
                    GridViewConsultaVendedores.DataSource = Listas;
                    GridViewConsultaVendedores.DataBind();
                }
            }

            GridViewConsultaVendedores.DataSource = Listas;
            GridViewConsultaVendedores.DataBind();
        }