Ejemplo n.º 1
0
        protected void btnBuscar_Click(object sender, EventArgs e)
        {
            string fechaInicio = txtFechaInicio.Text;
            string fechaFin    = txtFechaFin.Text;

            if (fechaInicio != "" && fechaFin != "")
            {
                DateTime inicio = Convert.ToDateTime(fechaInicio), fin = Convert.ToDateTime(fechaFin);

                if (inicio <= fin)
                {
                    gvVentas.DataSource = objCtrSolicitud.SolicitudesTerminadasEntreFechas(fechaInicio, fechaFin);
                    gvVentas.DataBind();
                    lbltotal.Text = (objCtrSolicitud.ImporteTotalEntreFechas(fechaInicio, fechaFin)).ToString();
                }
            }
            else
            {
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "swal({type:'error',title:'ERROR!',text:'Espacios VACIOS o intervalo incorrecto!!'})", true);
                return;
            }
        }