Olá galera estou com um probleminha e não consigo resolver, preciso filtrar uma busca mas os dados não aparecem!
SEGUE O CODIGO QUE ESTOU FAZENDO O FILTRO:
Set rs1 = Server.CreateObject( "ADODB.Recordset" )
strrs1 = "SELECT * FROM titulos where despesa = '"&Request.Form("tipo")&"' AND dataemissao BETWEEN #"&formatadata(request.form("datainicial"))&"# AND #"&formatadata(request.form("datafinal"))&"#"
rs1.open strrs1, conexao, 3, 3
Será se tem haver com os dados que esta recebendo do Request.Form("tipo"), pois estão com acentos e traços?
SEGUE O SELECT QUE ENVIA PARA O REQUEST.FORM
<select name="tipo" size="1">
<option>SELECIONE</option>
<option value="140 - ANTECIPAÇÃO DE VALE TRANSPORTE">140 - ANTECIPAÇÃO DE VALE TRANSPORTE</option>
<option value="120 - AMORTIZAÇÃO DE IMPRESTIMOS/FINANCIAMENTOS/CONSORCIOS">120 - AMORTIZAÇÃO DE IMPRESTIMOS/FINANCIAMENTOS/CONSORCIOS</option>
<option value="106 - CONTRIBUIÇÃO E ASSIST. / SINDICATOS">106 - CONTRIBUIÇÃO E ASSIST. / SINDICATOS</option>
</select>
Question
Rodrigo_Linhas
Olá galera estou com um probleminha e não consigo resolver, preciso filtrar uma busca mas os dados não aparecem!
SEGUE O CODIGO QUE ESTOU FAZENDO O FILTRO:
Será se tem haver com os dados que esta recebendo do Request.Form("tipo"), pois estão com acentos e traços? SEGUE O SELECT QUE ENVIA PARA O REQUEST.FORM Edited by Rodrigo_LinhasLink to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.