| |
<%
cor = 1
while not Consulta.eof
if (cor = 1) then
bg = "#FFFFFF"
cor = 2
else
bg = "#EFEFEF"
cor = 1
end if
%>
|
<%=consulta("Entradas")%> : |
<%=replace(consulta("Descricao"), vbcrlf," ")%>
|
R$
|
<%=consulta("Valor")%> |
<%
consulta.movenext
wend
%>
|
| |
<%
while not consulta2.eof
if (cor = 1) then
bg = "#FFFFFF"
cor = 2
else
bg = "#EFEFEF"
cor = 1
end if
%>
|
<%=consulta2("Refeicoes")%> : |
<%=replace(consulta2("Descricao"), vbcrlf," ")%> |
R$
|
<%=consulta2("Valor")%> |
<%
consulta2.movenext
wend
%>
|
|
<%
while not consulta3.eof
if (cor = 1) then
bg = "#FFFFFF"
cor = 2
else
bg = "#EFEFEF"
cor = 1
end if
%>
|
<%=consulta3("Bebidas")%> : |
<%=replace(consulta3("Descricao"), vbcrlf," ")%> |
R$
|
<%=consulta3("Valor")%> |
<%
consulta3.movenext
wend
%>
|
|
<%
while not consulta4.eof
if (cor = 1) then
bg = "#FFFFFF"
cor = 2
else
bg = "#EFEFEF"
cor = 1
end if
%>
|
<%=consulta4("Porcoes")%> : |
<%=replace(consulta4("Descricao"), vbcrlf," ")%> |
R$
|
<%=consulta4("Valor")%> |
<%
consulta4.movenext
wend
consulta.close
consulta2.close
consulta3.close
consulta4.close
conn.close
%>
|
|
|
|
|