Pesquisar na Comunidade
Mostrando resultados para as tags ''consulta asp''.
Encontrado 1 registro
-
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"> </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>
-
- consulta asp
- access
-
(e %d mais)
Tags: