| |
|
|
| Aqui você encontra as últimas novidades encontradas na imprensa. |
| |
<%
Set RSNot = Server.CreateObject("ADODB.Recordset")
RSNot.open "Select * from noticias order by id_noticia desc", objConn
if RSNot.eof then
%>
Nenhuma Notícia Cadastrada |
<%
else
while not RSNot.eof
%>
<%=RSNot("data")%> - <%=RSNot("titulo")%>
<%=RSNot("descricao")%>
" target="_blank"><%=RSNot("link")%>
|
<%
RSNot.movenext
wend
end if
%>
| |
|