Eğer veritabanı access ise;
<table width="100%" height="13" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; font-family:Tahoma; font-size:8pt">
  <%
        set bilgi=baglan.execute("Select top 15 * from tbl1 order by id desc")
        Do While Not bilgi.eof
        %>
  <tr>
    <td height="10" width="657" valign="top"><p align="left">&bull;<a href="detay.asp?id=<%=bilgi("id")%>" style="color:#00000"> <%=bilgi("baslik")%></a></p></td>
  </tr>
  <%
        bilgi.movenext
        loop
        bilgi.close
        set bilgi=nothing
        %>
</table>
mysql ise;
<table width="100%" height="13" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; font-family:Tahoma; font-size:8pt">
  <%
        set bilgi=baglan.execute("Select * from tbl1 order by id desc limit 15")
        Do While Not bilgi.eof
        %>
  <tr>
    <td height="10" width="657" valign="top"><p align="left">&bull;<a href="detay.asp?id=<%=bilgi("id")%>" style="color:#00000"> <%=bilgi("baslik")%></a></p></td>
  </tr>
  <%
        bilgi.movenext
        loop
        bilgi.close
        set bilgi=nothing
        %>
</table>