Ir para conteúdo
Fórum Script Brasil

Pesquisar na Comunidade

Mostrando resultados para as tags ''consulta asp''.

  • Pesquisar por Tags

    Digite tags separadas por vírgulas
  • Pesquisar por Autor

Tipo de Conteúdo


Fóruns

  • Programação & Desenvolvimento
    • ASP
    • PHP
    • .NET
    • Java
    • C, C++
    • Delphi, Kylix
    • Lógica de Programação
    • Mobile
    • Visual Basic
    • Outras Linguagens de Programação
  • WEB
    • HTML, XHTML, CSS
    • Ajax, JavaScript, XML, DOM
    • Editores
  • Arte & Design
    • Corel Draw
    • Fireworks
    • Flash & ActionScript
    • Photoshop
    • Outros Programas de Arte e Design
  • Sistemas Operacionais
    • Microsoft Windows
    • GNU/Linux
    • Outros Sistemas Operacionais
  • Softwares, Hardwares e Redes
    • Microsoft Office
    • Softwares Livres
    • Outros Softwares
    • Hardware
    • Redes
  • Banco de Dados
    • Access
    • MySQL
    • PostgreSQL
    • SQL Server
    • Demais Bancos
  • Segurança e Malwares
    • Segurança
    • Remoção De Malwares
  • Empregos
    • Vagas Efetivas
    • Vagas para Estágios
    • Oportunidades para Freelances
  • Negócios & Oportunidades
    • Classificados & Serviços
    • Eventos
  • Geral
    • Avaliações de Trabalhos
    • Links
    • Outros Assuntos
    • Entretenimento
  • Script Brasil
    • Novidades e Anúncios Script Brasil
    • Mercado Livre / Mercado Sócios
    • Sugestões e Críticas
    • Apresentações

Encontrar resultados em...

Encontrar resultados que...


Data de Criação

  • Início

    FIM


Data de Atualização

  • Início

    FIM


Filtrar pelo número de...

Data de Registro

  • Início

    FIM


Grupo


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Encontrado 1 registro

  1. Galera boa noite sou novo e estou me familizarizando com o forum e também sou novo em asp estou fazendo um site para minha prova final, já consegui criar a pagina para incluir lsitar e excluir a minha duvida é a seguinte: Como posso fazer para consultar em uma tabela de 15 campos apenas 5 campos? exe:. minha tabela_funcionarios tenho os campos: codigo,matricula,nome,departamento,setor,empresa,ramal..... criei uma pagina para consulta onde o usuario poderia pesquisar por um dos 3 campos nome ou matricula ou departamento como posso fazer para buscar dessa maneira a pagina que criei listar puxa todo o meu banco e não so uma linha exclusiva, segue o codigo da minha pagina listar.asp: <!-- #include file="conn.asp" --> <% vSql = "SELECT * FROM TAB_FUNCIONARIOS" Set myRst = Server.CreateObject("ADODB.Recordset") myRst.Open vSql, conn, 3, 3 %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Funcionarios Brasfels</title> <style type="text/css"> body { background-image: url(); } .Subtitulo { font-family: Tahoma, Geneva, sans-serif; font-size: 18px; text-align: center; } .listagem { font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; font-size: 12px; } </style> </head> <body> <table width="100%" height="533" border="0" align="center"> <tr> <td><table width="100%" border="1"> <tr> <td width="800" height="122" align="center" valign="middle" class="Subtitulo"><img src="imagens/LOGOBR.jpg" width="288" height="126" /><br /></td> </tr> <tr> <td height="44" align="center"><table width="100%" border="0"> <tr> <th width="64" height="35" scope="col"><a href="Login.html"><img src="imagens/home.gif" width="30" height="30" longdesc="menu.html" /></a></th> <th width="865" scope="col"><p class="Subtitulo"> Funcionario </p></th><hr> <th width="81" scope="col"><a href="menu.html"><img src="imagens/seta-voltar.gif" width="30" height="30" longdesc="login.html" /></a></th> <table width="80%" border="1" cellpadding="0" cellspacing="0"><hr> <tr> <th width="2%" scope="col">codigo</th> <th width="6%" scope="col">matricula</th> <th width="40%" scope="col">nome</th> <th width="10%" scope="col">departamento</th> <th width="10%" scope="col">Empresa</th> <th width="10%" scope="col">&nbsp;</th> </tr> <% do while not myRst.EOF var_codigo = myRst.fields("codigo") var_matricula = myrst.fields("matricula") var_nome = myrst.fields("nome") var_departamento = myrst.fields("departamento") var_empresa = myrst.fields("empresa") %> <tr> <td height="45" align="center" valign="middle"><%=var_codigo%></td> <td align="center" valign="middle"><%=var_matricula%></td> <td align="center" valign="middle"><%=var_nome%></td> <td align="center" valign="middle"><%=var_departamento%></td> <td align="center" valign="middle"><%=var_empresa%></td> <td align="center" valign="middle"><table width="100%" border="1"> <tr> <th scope="col"><a href="funcionario_bf_form_alterar.asp?codigo=<%=var_codigo%>"><img src="imagens/user_male_edit.png" name="atualizar" width="32" height="32" id="atualizar" /></a></th> <th scope="col"><a href="funcionario_bf_excluir.asp?codigo=<%=var_codigo%>"><img src="imagens/delete.png" name="deletar" width="35" height="35" id="deletar" /></a></th> </tr> </table></td> </tr> <% myRst.MoveNext loop %> </table> </tr> </table> </tr> </table> </body> </html>
×
×
  • Criar Novo...