<%
CALL CreateConnection()
CALL CreateRecordSet(colunistas, "SELECT_COLUNISTA 0")
if not colunistas.eof then
response.write ".: Outros Colunistas
"
do until colunistas.eof
response.write ""& colunistas("nome") & " "
colunistas.movenext
loop
end if
CALL CloseRecordSet(colunistas)
CALL CloseConnection()
%>
|
|
|
|
<%
CALL CreateConnection()
CALL CreateRecordSet(coluna, "SELECT_COLUNA "&request("ID")&", 0")
if not coluna.eof then
id = coluna("id_coluna")
%>
<%= coluna("nome") %> |
<%
site = ""&coluna("rel_site")
if trim(site) = "" then site = -1
CALL CreateRecordSet(link, "SELECT_link "&site&"")
if not link.eof then
%>
<%
end if
CALL CloseRecordSet(link)
%>
<% if len(coluna("foto")) > 0 then %> " border="0" alt="" align="right" hspace="6"><% end if %>
<% if len(coluna("data_coluna")) > 0 then %><%= convertedata_br(coluna("data_coluna")) %> - <% end if %>
<% if len(coluna("titulo")) > 0 then %><%= coluna("titulo") %>
<% end if %>
<% if len(coluna("texto")) > 0 then %><%= coluna("texto") %>
<% end if %>
<% if coluna("edicao") <> 0 then %>Extraido da Edição nº <%= coluna("edicao") %> da Revista Speedway <% end if %>
|
<% end if
CALL CreateConnection()
response.write ""
CALL CLoseRecordSet(coluna)
CALL CloseConnection()
%>
|
|
|