protected void GVAprobaciones_PageIndexChanging(object sender, GridViewPageEventArgs e) { try{ GVAprobaciones.PageIndex = e.NewPageIndex; GVAprobaciones.DataSource = (DataTable)Session["SEG_APR_SALIDAS"]; GVAprobaciones.DataBind(); }catch (Exception ex) { Mensaje(ex.Message, WarningType.Danger); } }
private void cargarDatos() { try{ String vQuery = "RSP_Seguridad 4"; DataTable vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { GVBusqueda.DataSource = vDatos; GVBusqueda.DataBind(); Session["SEG_SALIDAS"] = vDatos; } vQuery = "RSP_Seguridad 19"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { GVAprobaciones.DataSource = vDatos; GVAprobaciones.DataBind(); Session["SEG_APR_SALIDAS"] = vDatos; } vQuery = "[RSP_Seguridad] 9"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { DDLMotivo.Items.Clear(); DDLMotivo.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); foreach (DataRow item in vDatos.Rows) { DDLMotivo.Items.Add(new ListItem { Value = item["idDetalle"].ToString(), Text = item["descripcion"].ToString() }); } } vQuery = "RSP_Seguridad 5"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { DDLArticulo.Items.Clear(); DDLArticulo.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); foreach (DataRow item in vDatos.Rows) { DDLArticulo.Items.Add(new ListItem { Value = item["idDetalle"].ToString(), Text = item["descripcion"].ToString() }); } } //vQuery = "[RSP_Seguridad] 18"; //vDatos = vConexion.obtenerDataTable(vQuery); //if (vDatos.Rows.Count > 0){ // DDLAutorizado.Items.Clear(); // DDLAutorizado.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); // foreach (DataRow item in vDatos.Rows){ // DDLAutorizado.Items.Add(new ListItem { Value = item["idEmpleado"].ToString(), Text = item["nombre"].ToString() }); // } //} }catch (Exception ex) { Mensaje(ex.Message, WarningType.Danger); } }
private void cargarDatos() { try{ String vQuery = "RSP_Seguridad 23"; DataTable vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { GVBusqueda.DataSource = vDatos; GVBusqueda.DataBind(); Session["ACTIVOS_ENTRADAS"] = vDatos; } vQuery = "RSP_Seguridad 5"; vDatos = vConexion.obtenerDataTable(vQuery); DDLArticulos.Items.Clear(); DDLArticulos.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); foreach (DataRow item in vDatos.Rows) { DDLArticulos.Items.Add(new ListItem { Value = item["idDetalle"].ToString(), Text = item["descripcion"].ToString() }); } vQuery = "RSP_ObtenerGenerales 12"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { DDLDepartamento.Items.Clear(); DDLDepartamento.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); foreach (DataRow item in vDatos.Rows) { DDLDepartamento.Items.Add(new ListItem { Value = item["idDepartamento"].ToString(), Text = item["nombre"].ToString() }); } } vQuery = "RSP_Seguridad 9"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { DDLMotivo.Items.Clear(); DDLMotivoSalida.Items.Clear(); DDLMotivo.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); DDLMotivoSalida.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); foreach (DataRow item in vDatos.Rows) { DDLMotivoSalida.Items.Add(new ListItem { Value = item["idDetalle"].ToString(), Text = item["descripcion"].ToString() }); DDLMotivo.Items.Add(new ListItem { Value = item["idDetalle"].ToString(), Text = item["descripcion"].ToString() }); } } vQuery = "RSP_Seguridad 19"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { GVAprobaciones.DataSource = vDatos; GVAprobaciones.DataBind(); Session["SEG_APR_SALIDAS"] = vDatos; } vQuery = "RSP_Seguridad 5"; vDatos = vConexion.obtenerDataTable(vQuery); if (vDatos.Rows.Count > 0) { DDLArticuloSalida.Items.Clear(); DDLArticuloSalida.Items.Add(new ListItem { Value = "0", Text = "Seleccione una opción" }); foreach (DataRow item in vDatos.Rows) { DDLArticuloSalida.Items.Add(new ListItem { Value = item["idDetalle"].ToString(), Text = item["descripcion"].ToString() }); } } }catch (Exception ex) { Mensaje(ex.Message, WarningType.Danger); } }