merhaba

Aşağıdaki gibi haber kodlarım var sitede ben haberleri yan yana ve
aşağıya doğru devam etmesini istiyorum bunu nasıl yapabilirim.
----------------------
<%
set trs = server.createobject("adodb.recordset")
sql="select * from makale order by id desc"
trs.open sql,baglanti,1,3

shff = inject(Request.QueryString("shff"))
IF Not IsNumeric(REQUEST.QUERYSTRING("shff")) THEN
Response.Redirect "default.asp"
Response.End
END IF

if trs.eof Then
Response.Write "<br><br><div align=""center"" class=""uye"">Kayıtlı  <b>trs</b> yok ! </div>  "
Response.End
End If

s = 1
If shff="" Then shff="1"
trs.pagesize = 10
trs.absolutepage = shff
sayfa_sayisi = trs.pagecount
For i=1 To trs.pagesize
If trs.Eof Then exit for
%>
<table border="0" width="570" id="table4">
						<tr>
							<td width="160"><a href="news.asp?id=<%=trs("id")%>">
							<b><font face="Tahoma" color="#58514E"><%=trs("baslik")%></font></b></a><font color="#58514E"><b><font face="Tahoma" color="#58514E">
							</font></b></font> </td>
							<td width="293"><font face="Tahoma" color="#666666"><%=trs("tarih")%></font></td>
						</tr>
						<tr>
							<td width="95">
							<img border="0" src="<%=trs("resim")%>" width="103" height="161"></td>
							<td width="459" colspan="2"><b>
							<font face="Tahoma" color="#58514E"><%=left(trs("makale"),250)%><br><br><a href="news.asp?id=<%=trs("id")%>">
							<font color="#58514E">Haberin devamını okumak için tıklayın</font></a></font></b></td>
						</tr>
					</table>