private void cargar()
        {
            Util.Helper.ListarClientes(ddlcliente);
            NotaRecojoDAO db = new NotaRecojoDAO();

            txtfi.Text = DateTime.Now.ToString("yyyy-MM-dd");
            txtff.Text = DateTime.Now.ToString("yyyy-MM-dd");
            grvnotarecojo.DataSource = db.BuscarNotaRecojoxfecha(txtfi.Text, txtff.Text, "0");
            grvnotarecojo.DataBind();
        }
        protected void btnbuscar_Click(object sender, EventArgs e)
        {
            string        fi   = txtfi.Text;
            string        ff   = txtff.Text;
            string        id   = ddlcliente.SelectedValue;
            NotaRecojoDAO nota = new NotaRecojoDAO();

            grvnotarecojo.DataSource = nota.BuscarNotaRecojoxfecha(fi, ff, id);
            grvnotarecojo.DataBind();
        }