protected void Cargar() { Equipos eq = new Equipos(); TiposSalidas ts = new TiposSalidas(); Bancas b = new Bancas(); Mensajeros m = new Mensajeros(); DataTable dt = new DataTable(); FechaLabel.Text = DateTime.Now.ToString("dd/MM/yyy"); FechaCargar.Visible = false; BancasDropDownList.DataSource = b.Listado("*", "1=1", ""); BancasDropDownList.DataValueField = "BancaId"; BancasDropDownList.DataTextField = "NumeroBanca"; BancasDropDownList.DataBind(); MensajerosDropDownList.DataSource = m.Listado("*", "1=1", ""); MensajerosDropDownList.DataValueField = "MensajeroId"; MensajerosDropDownList.DataTextField = "Nombres"; MensajerosDropDownList.DataBind(); EquiposDropDownList.DataSource = eq.Listadodts("Estadoid = 2"); EquiposDropDownList.DataValueField = "EquipoId"; EquiposDropDownList.DataTextField = "Aux"; EquiposDropDownList.DataBind(); dt.Columns.AddRange(new DataColumn[4] { new DataColumn("Equipo ID"), new DataColumn("Tipo de Equipo"), new DataColumn("Marca"), new DataColumn("Costo") }); ViewState["Detalle"] = dt; ValidarCarga(); }
protected void FiltroDropDownList_SelectedIndexChanged1(object sender, EventArgs e) { if (FiltroDropDownList.SelectedIndex == 0) { AuxDropDownList.Visible = false; FiltroTextBox.Visible = true; ValidationSummary1.Enabled = true; RequiredFieldValidator6.Enabled = true; RegularExpressionValidator2.Enabled = true; Utilitarios.Operacion = "D.DevolucionId = "; } if (FiltroDropDownList.SelectedIndex == 1) { Bancas b = new Bancas(); AuxDropDownList.DataSource = b.Listado("*", "1=1", ""); AuxDropDownList.DataTextField = "NumeroBanca"; AuxDropDownList.DataValueField = "BancaId"; AuxDropDownList.DataBind(); FiltroTextBox.Visible = false; AuxDropDownList.Visible = true; Utilitarios.Operacion = "D.BancaId = "; } if (FiltroDropDownList.SelectedIndex == 2) { Mensajeros M = new Mensajeros(); AuxDropDownList.DataSource = M.Listado("*", "1=1", ""); AuxDropDownList.DataTextField = "Nombres"; AuxDropDownList.DataValueField = "MensajeroId"; AuxDropDownList.DataBind(); FiltroTextBox.Visible = false; AuxDropDownList.Visible = true; Utilitarios.Operacion = "D.MensajeroId = "; } }
protected void cargar() { Mensajeros M = new Mensajeros(); MensajerosGridView.DataSource = M.Listado("MensajeroId, Nombres, Sexo, FechaNacimiento, Cedula, Direccion, Celular", Filtrar(), ""); MensajerosGridView.DataBind(); Utilitarios.Data = Filtrar(); }
public string Filtrar() { Mensajeros M = new Mensajeros(); string condicion = "1=1"; if (!string.IsNullOrWhiteSpace(FiltroTextBox.Text)) { condicion = SeleccionarFiltro() + " like '%" + FiltroTextBox.Text + "%'"; } MensajerosGridView.DataSource = M.Listado("MensajeroId, Nombres, Sexo, FechaNacimiento, Cedula, Direccion, Celular", condicion, ""); MensajerosGridView.DataBind(); return(condicion); }
protected void FiltroDropDownList_SelectedIndexChanged(object sender, EventArgs e) { if (FiltroDropDownList.SelectedIndex == 0) { AuxDropDownList.Visible = false; FiltroTextBox.Visible = true; ValidationSummary1.Enabled = true; RequiredFieldValidator6.Enabled = true; RegularExpressionValidator2.Enabled = true; Utilitarios.Operacion = "S.SalidaId = "; } if (FiltroDropDownList.SelectedIndex == 1) { TiposSalidas ts = new TiposSalidas(); AuxDropDownList.DataSource = ts.Listado("*", "1=1", ""); AuxDropDownList.DataTextField = "Detalle"; AuxDropDownList.DataValueField = "TipoSalidaId"; AuxDropDownList.DataBind(); FiltroTextBox.Visible = false; AuxDropDownList.Visible = true; Utilitarios.Operacion = "S.TipoSalidaId = "; } if (FiltroDropDownList.SelectedIndex == 2) { Mensajeros M = new Mensajeros(); AuxDropDownList.DataSource = M.Listado("*", "1=1", ""); AuxDropDownList.DataTextField = "Nombres"; AuxDropDownList.DataValueField = "MensajeroId"; AuxDropDownList.DataBind(); FiltroTextBox.Visible = false; AuxDropDownList.Visible = true; Utilitarios.Operacion = "S.MensajeroId = "; } //if (FiltroDropDownList.SelectedIndex == 3) //{ // TiposEquipos te = new TiposEquipos(); // AuxDropDownList.DataSource = te.Listado("*", "1=1", ""); // AuxDropDownList.DataTextField = "Detalle"; // AuxDropDownList.DataValueField = "TipoEquipoId"; // AuxDropDownList.DataBind(); // FiltroTextBox.Visible = false; // AuxDropDownList.Visible = true; // Utilitarios.Operacion = "EQ.TipoEquipoId = "; //} }
protected void Cargar() { if (Utilitarios.Set.Equals("UsersDataSet")) { Usuarios u = new Usuarios(); Utilitarios.ConfigurarReporte(ReportViewerGenerico, @"Reportes\UsersReport.rdlc", "UsersDataSet", u.Listado("*", Utilitarios.Data, "")); } if (Utilitarios.Set.Equals("BancasDataSet")) { Bancas B = new Bancas(); Utilitarios.ConfigurarReporte(ReportViewerGenerico, @"Reportes\BancasReport.rdlc", "BancasDataSet", B.Listado("*", Utilitarios.Data, "")); } if (Utilitarios.Set.Equals("EquiposDataSet")) { Equipos eq = new Equipos(); Utilitarios.ConfigurarReporte(ReportViewerGenerico, @"Reportes\EquiposReport.rdlc", "EquiposDataSet", eq.ListadoViewer(Utilitarios.Data)); } if (Utilitarios.Set.Equals("MensajerosDataSet")) { Mensajeros M = new Mensajeros(); Utilitarios.ConfigurarReporte(ReportViewerGenerico, @"Reportes\MensajerosReport.rdlc", "MensajerosDataSet", M.Listado("*", Utilitarios.Data, "")); } }