salve a tutti!! ho un problema e spero che vogliate aiutarmi nel risolverlo:
allora ho due pagine, la prima riguarda la visualizzazione della news la seconda è l'elenco delle news! il mio problema è questo:
vorre visualizzare in una pagina a sinistra la news e a destra l'elenco ma non riesco!!! vi posto i codice della prima e della seconda pagina:

prima pagina (visualizzazione della news):

<table width="100%" border="0" align="left" cellpadding="0" cellspacing="5">
<tr>
<td width="99" align="left" valign="top" bgcolor="#FFFFFF"><font face="Verdana" size="2" color="#CC0000">
</font><font face="Verdana" size="2" color="#1e4196"> <span class="titolonews">
<font face="Verdana" size="2" color="#CC0000">
<%
id = request.querystring("id")
DSNtemp="DRIVER={Microsoft Access Driver (*.mdb)}; "
DSNtemp=dsntemp & "DBQ=" & server.mappath("db.mdb")
sqlstmt = "SELECT * FROM tabella where id =" & id & " ORDER BY id DESC"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sqlstmt, DSNtemp, 3, 3
TotalRecs = rs.recordcount
clickdb = rs("click") + 1
rs("click") = clickdb
rs.update
prodotto = rs("ptitolo")
id = rs("ID")
titoletto = rs("titoletto")
pc = rs("pimg3")
pcat1 = rs("pcat")
p1= rs("pentry")
pa= rs("pimg1")
pb= rs("pimg2")
date1= rs("pdate")
firma1= rs("firma")
pdimg1= rs("pdimg1")
pdimg2= rs("pdimg2")
pdimg3= rs("pdimg3")
click= rs("click")
description = p1
%>
</font>

<% =prodotto %>
</span>
</font></td>
</tr>
<tr bgcolor="#FFFFFF">
<td align="left" valign="top"><font face="Verdana" size="1" color="#666666">
<% =titoletto %>
</font></td>
</tr>
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF"> <div align="left"><font face="Verdana" size="1" color="#999999"><font face="Arial, Helvetica, sans-serif"><font face="Verdana, Arial, Helvetica, sans-serif">
</font></font>
<% =date1 %>
<font size="2">|</font>letto </font><font color="#999999">[<font face="Verdana" size="1">
<% =click %>
</font>]</font></div></td>
</tr>
<tr>
<td align="left" valign="top"><font face="Verdana" size="2" color="#006fbb">
<div class=bodyarticle align=justify>
<table width=1
border=0 align=left cellpadding=1 cellspacing=0>
<tbody>
<tr>
<td><font face="Verdana" size="2" color="#000000">[img]<%=pa%>[/img]</font></td>
</tr>
<tr height=2>
<td bgcolor=white height=2><div align="left"><font face="Verdana" size="1" color="#000000">
</font><font face="Verdana" size="1" color="#000000">
<% =pdimg1 %>
</font><spacer type="block"
width="100%" height="2"></div></td>
</tr>
<tr height=2>
<td bgcolor=white height=2><font face="Verdana" size="2" color="#000000">[img]<%=pb%>[/img]</font><spacer type="block"
width="100%" height="2"></td>
</tr>
<tr>
<td bgcolor=white height=2><div align="left"><font face="Verdana" size="1" color="#000000">
</font><font face="Verdana" size="1" color="#000000">
<% =pdimg2 %>
</font><spacer type="block"
width="100%" height="2"></div></td>
</tr>
<tr>
<td align=middle><font face="Verdana" size="2" color="#000000">[img]<%=pc%>[/img]</font></td>
</tr>
<tr>
<td bgcolor=white> <div align="left"><font face="Verdana" size="1" color="#000000">
</font><font face="Verdana" size="1" color="#000000">
<% =pdimg3 %>
</font><spacer type="block"
width="100%" height="2"></div>
<div align="left"><font face="Verdana" size="1" color="#000000">
</font><font face="Verdana" size="1" color="#000000">
</font><spacer type="block"
width="100%" height="2"></div></td>
</tr>
</tbody>
</table>
<font color="#000000"><span class="testo1">
<% =description%>
</span> </font></div>
</font> </tr>
<tr>
<td align="left" valign="top"> <div align="right"><font color="#666666" size="2" face="Verdana, Arial, Helvetica, sans-serif">
<% =firma1 %>
</font>
</div>
<div align="right"> <font face="Verdana" size="1" color="#000000"></font><font color="#666666" size="2" face="Verdana, Arial, Helvetica, sans-serif">
</font></div>
<div align="center"></div></td>
</tr>
</table>


seconda pagina (elenco delle news):





<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0" align="center">
<TR>
<TD>
<%
iPageSize = 5 'NUMERO RECORD PER PAGINA

If Request.QueryString("page") = "" Then
iPageCurrent = 1
Else
iPageCurrent = CInt(Request.QueryString("page"))
End If

strSQL = "SELECT * FROM tabella ORDER BY Pdate DESC"
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.PageSize = iPageSize
objRS.CacheSize = iPageSize
objRS.Open strSQL, objConn, adOpenStatic, adLockReadOnly, adCmdText

reccount = objRS.recordcount
iPageCount = objRS.PageCount

If iPageCurrent > iPageCount Then iPageCurrent = iPageCount
If iPageCurrent < 1 Then iPageCurrent = 1

If iPageCount = 0 Then
Response.Write "<table><td><font face='verdana' size='2' color='#000000'>Non sono stati trovati dati.</td></table>"
Else
objRS.AbsolutePage = iPageCurrent
iRecordsShown = 0
%>
<table>
<%
'SI VISUALIZZA IL CONTENUTO DELLA STRINGA SQL
'ALL'INTERNO DELLA TABELLA PRIMA DEFINITA
cont=1
Do While iRecordsShown < iPageSize And Not objRS.EOF
'Dim Rig, bg
'Rig = Rig + 1
'If Rig Mod 2 = 0 then
' bg = "#E4E4E4"
'Else
' bg = "#ccccff"
'End if
'Response.Write "<tr bgcolor = " & bg & "><td><font color='#000000' face='Verdana' size='1'>" & (iPageSize*iPageCurrent)-iPageSize+Cont & "</font></td>"
'Response.Write "<tr>"
'Response.Write "<tr><td><font color='#666666' face='Verdana' size='1'>" & objRS("pcat") & "</font> | "
Response.Write "<tr><td><font color='#666666'> " &objRs("pdate") & " | Letto [<font face='verdana' size='1'>"&objRS("click")&"</font>]
<font color='#666666' face='Verdana' size='1'><span class=""titolonews"">"&objRS("ptitolo")&"</span> "&LunghezzaTesto(200,objRS("pentry"))&"</font>[b]

[img][/img]</td></tr>"
'Response.Write "<font color='#000000' face='Verdana' size='1'>"&LunghezzaTesto(250,objRS("pentry"))&"</font>

"
'Response.Write "<td align='center'><font color='#000000' face='Verdana' size='1'>" & objRS("cod") & "</font></td>"
'Response.Write "Letto [" & objRS("click") & "]</font>
<hr></td></tr>"
'Response.Write "<font color='#000000' face='Verdana' size='1'>scaricato " & objRS("hit") & "</font></td>"
Cont = Cont + 1
'POSIZIONAMENTO ALLA RIGA SUCCESSIVA DEL DB
iRecordsShown = iRecordsShown + 1
objRS.MoveNext
Loop
'PULIZIA DEGLI OGGETTI ADO
objRS.Close
Set objRS = Nothing
%>
</table>
<%End if%>



<%If ipagecount <> 1 Then%>
<table>
<tr>
<td width="50%"><font face="verdana" size="1" color="#000000"> [
<%if iPageCurrent-2 > 0 and iPageCurrent > 2 then%>
[img]images/first.gif[/img]
<%end if%>
<%if iPageCurrent > 1 then%>
[img]images/pre.gif[/img]
<%end if%>
<%if iPageCount > 2 then
if iPageCurrent-2 < 1 then da_pag = 1 else da_pag = iPageCurrent-2
if iPageCurrent+2 > iPageCount then fino_a_pag = iPageCount else fino_a_pag = iPageCurrent+2
else
da_pag = 1
fino_a_pag = iPageCount
end if%>
<%for i = da_pag to fino_a_pag%>
<%if i = iPageCurrent then%>
<font color="red"> <%=i%> </font>
<%else%>
<%=i%>
<%end if%>
<%next%>
<%if iPageCurrent > 0 and iPageCurrent < iPageCount then%>
[img]images/next.gif[/img]
<%end if%>
<%if iPageCurrent+1 < iPageCount then%>
[img]images/last.gif[/img]
<%end if%>
]
</font></td>
</tr>
<tr>
<td colspan="2" align="left"><font face="verdana" size="1" color="#000000">
Pagina <font color="#FF0000"> <%=iPageCurrent%> </font>
di <font color="#FF0000"> <%=iPageCount%> </font>
</font></td>
</tr>
</table>
<%end if%>
<%
objConn.Close
Set objConn = Nothing
%>
</TD>
</TR>
</TABLE>


Per cortesia potreste aiutarmi sto impazzendo! VVoVe: