%
set conexao = server.CreateObject("adodb.connection")
conexao.Open application("odbc")
%>
....

Veja abaixo as perguntas frequentes: Envie sua dúvida
|
<%
sql = "select top 15 pergunta, codigo from duvidas where status = 'A' order by data desc"
set rsservico = conexao.Execute(sql)
while not rsservico.eof
%>
"><%=rsservico("pergunta")%>
|
<%
rsservico.movenext
wend
%>
<%
set rsservico = nothing
set conexao = nothing
%>