Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Boris

Busca por campo

Recommended Posts

Salve Galera do Forum..Estou tempo um problemas para fazer um sistema de busca sera que alguem poe me ajudar.o que acontece, eu tenho uma tabela em ACCESS com a seguinte estruturaNOTICIAS (nome da tabela)- id- titulo- noticia- fonteEu gostaria de saber como eu posso colocar em um text box a informação a informação que eu gostaria de encontrar e em um check list ao lado em que eu possa escolher em que campo da tabela eu devo procurarSerá que alguem pode me ajudar como eu posso fazerE SE POSSIVEL COMENTAR O CODIGO PRA QUE EU POSSA APRENDER A LOGICA DE COMO FAZER E POSSIVELMENTE PODER AJUDAR MEMBROS DO FORUM.O Codigo da minha pagina está logo abaixo.OBRIGADO http://forum.imasters.com.br/public/style_emoticons/default/joia.gif

<!--#include file="cn.asp"--><html><head ><title>Documento sem título</title><link href="../css/webdin.css" rel="stylesheet" type="text/css"></head><body topmargin="0" leftmargin="0" rightmargin="0"><table width="750" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> <tr> <td><table width="100%" height="89" border="0" cellpadding="0" cellspacing="0"> <tr> <td height="89" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="100%" height="10"><img src="../Espaco%20Gospel/Imagens/transp.gif" width="1" height="1"></td> </tr> <tr> <td>||| Artigo ||||||||||||||||||||||||||||||||</td> </tr> <tr> <td></td> </tr> </table> <%intConta = 1noti = "select id, data, titulo from noticias where ativo = 1 ORDER BY data DESC"set ns = cn.Execute(noti)if ns.BOF AND ns.EOF then response.write "Nenhuma notícia cadastrada no momento."else while NOT ns.EOF AND intConta <=8 intConta = intConta + 1%> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="3%"><img src="../Espaco%20Gospel/Imagens/seta.gif" width="9" height="11"></td> <td width="97%" height="20"><%response.Write "<a href='noticias.asp?area=noticias&id=" & ns("id")&"' class='link'>" & left (ns("titulo"),38) & "</a>"%> <!--Notícias--> <!--Final notícias--> </td> </tr> <tr> <td height="1" colspan="2" bgcolor="#CCCCCC"></td> </tr> <!--Final notícias--> </table> <%ns.MoveNext Wendend ifns.Closeset ns = nothing%></td> </tr> </table></td> </tr> <tr> <td> </td> </tr> <tr> <td height="557" align="left" valign="top"> <%Pesquisa = replace(request.form("titulo"),"'","''")SET RS = cn.Execute("SELECT titulo From noticias Where titulo like '%"& Pesquisa &"%' ORDER BY id DESC")while not RS.EOFresponse.write RS("titulo")RS.movenextwend%><form name="form1" method="post" action=""> <label></label> Busca <input name="busca" type="text" id='busca'> <label> <select name="select"> <option>lista do campo</option> </select> </label> <input type="submit" name="OK" value="Ok"> </form> </td> </tr></table></body></html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

primeira coisa q eu vi no seu codigo foi um select no qual você faz where ativo = 1 .... só que o campo ativo você não descreve na estrutura da sua tabela....sobre o checklist... você terá que trabalhar com if... tipo...if request("checklist") = 1 thenselect * from noticias where campo1 = xelseif request("checklist") = 2 then....e assim vai...

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.