Exemplo n.º 1
0
        public void mostrarListaMenu()
        {
            if (txtfiltrarPadre.Text == "")
            {
                query = "exec sp_mostrar_menus '" + txtFiltrarMenu.Text.Trim() + "','" + txtfiltarPantalla.Text.Trim() + "', -1";
            }
            else
            {
                query = "exec sp_mostrar_menus '" + txtFiltrarMenu.Text.Trim() + "','" + txtfiltarPantalla.Text.Trim() + "'," + txtfiltrarPadre.Text.Trim() + "";
            }

            dt = db.getQuery(conexionBecarios, query);
            if (dt.Rows.Count > 0)
            {
                Gvmenu.DataSource = dt;
                Gvmenu.DataBind();
            }
            else
            {
                verModal("Alerta", "No hay menús para mostrar");
            }
        }
Exemplo n.º 2
0
        public void mostrarListaMenu()
        {
            if (db.NumeroLetraConEspacio(txtFiltrarMenu.Text))
            {
                if (db.NumeroLetraConEspacio(txtfiltarPantalla.Text))
                {
                    if (txtListaPadrefiltro.SelectedValue == "")
                    {
                        query = "exec sp_mostrar_menus_nuevo '" + txtFiltrarMenu.Text.Trim() + "','" + txtfiltarPantalla.Text.Trim() + "', -1";
                    }
                    else
                    {
                        query = "exec sp_mostrar_menus_nuevo '" + txtFiltrarMenu.Text.Trim() + "','" + txtfiltarPantalla.Text.Trim() + "'," + txtListaPadrefiltro.SelectedValue.Trim() + "";
                    }

                    dt = db.getQuery(conexionBecarios, query);
                    if (dt.Rows.Count > 0)
                    {
                        Gvmenu.DataSource = dt;
                        Gvmenu.DataBind();
                    }
                    else
                    {
                        verModal("Alerta", "No hay menús para mostrar");
                        Gvmenu.DataSource = null;
                        Gvmenu.DataBind();
                    }
                }
                else
                {
                    verModal("Alerta", "El campo pantalla no tiene el formato correcto");
                }
            }
            else
            {
                verModal("Alerta", "El campo menú no tiene el formato correcto");
            }
        }