|
|
|
 |
<%
set rs = server.createobject("adodb.recordset")
rs.open "select top 5 * from tblnoticia order by noticiaid desc",conexao,1,2
if rs.eof then
%>
Não
existem notícias disponíveis
em nosso banco de dados |
<%
end if
do until rs.eof
%>
• <%= left(rs("ntexto"),30)%>
... |
<%
rs.movenext
loop
rs.close
set rs = nothing
%>
|
 |
|
 |
|
|
|
 |
|