protected void B_mostrar_archivos_Click(object sender, EventArgs e) { //mostramos todos los archivos que esten aprobados L_Consultar_archivos datos = new L_Consultar_archivos(); DataTable informacion = datos.mostrar_archivos(); //llenamos el GV y salimos del estado de edicion por si acaso GV_consultar_archivo.EditIndex = -1; GV_consultar_archivo.DataSource = informacion; GV_consultar_archivo.DataBind(); }
protected void B_consultar_archivos_Click(object sender, EventArgs e) { ClientScriptManager cm = this.ClientScript; //obtenemos el parametro de la consulta string dato = TB_consultar_archivos.Text.ToString(); //mostramos todos los archivos que esten aprobados L_Consultar_archivos parametros = new L_Consultar_archivos(); DataTable info = parametros.consultar_archivos(dato); //preguntamos si la consulta trajo parametros if (info.Rows.Count == 0) { //no trajo datos cm.RegisterClientScriptBlock(this.GetType(), "", "<script type='text/javascript'>alert('No se encontraron resultados');</script>"); } else { //llenamos el GV y salimos del estado de edicion por si acaso GV_consultar_archivo.EditIndex = -1; GV_consultar_archivo.DataSource = info; GV_consultar_archivo.DataBind(); } }