Tenho um sisteminha de noticias e gostaria de limitar a quantida de linhas por noticias, tipo queria deixar q ela exiba no máximo ate 4 linhas ... segue abaixo o codigo :
<%
cnpath="DBQ=" & Server.MapPath("noticias.mdb")
DataSource = "Driver={Microsoft Access Driver (*.mdb)}; " & cnpath
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open DataSource
'Abre o Recordset
Set RS = Server.CreateObject( "ADODB.Recordset" )
RS.ActiveConnection = conn
RS.open "SELECT * FROM Noticias"
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#1B243F" text="#1B243F">
<table width="276" border="0" cellspacing="0" cellpadding="0">
<%
if not rs.eof then
while not rs.eof
%>
<tr>
<td width="276"><font face="Arial"><font color="#FFFFFF">
<span style="font-size: 8pt"><img border="0" src="icone.jpg" align="left"></span></font><a target="_top" a href="ver.asp?id=<%=rs("id")%>"><font color="#FFFFFF"><span style="font-size: 9pt"><%=rs("manchete")%></span><br><span style="font-size: 8pt"><%=rs("noticia")%></span></font></a></font><b><font face="Arial" color="#FFFFFF" style="font-size: 8pt"><br><br>
</font></b></td>
<%
rs.Movenext
wend
end if
%>
</tr>
</table>
</body>
</html>
Pergunta
Fabio AVILA
Ola Amigos
Tenho um sisteminha de noticias e gostaria de limitar a quantida de linhas por noticias, tipo queria deixar q ela exiba no máximo ate 4 linhas ... segue abaixo o codigo :
Desde já agradeço
vlw
Link para o comentário
Compartilhar em outros sites
8 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.