salve ragazzi...siccome sto imparando un pò a muovermi tra i linguaggi...e con tanta fatica...vista la mia ignoranza volevo farvi una domanda per voi stupidissima...ho creato delle news aggiornabili in asp da database....vorrei far si che queste siano scorrevoli con uno script...un javascript...l'unica cosa e'è che non sò come collegare i due codici....vi segno quello asp cosi magari mi potete dire dove e come legare qualche script di news scorrevoli:


<%
' PERCORSO DEL DATABASE
url_DB = "driver={Microsoft Access Driver (*.mdb)};dbq=" & server.mappath("database.mdb")
Set Conn = Server.CreateObject("ADODB.Connection")
conn.Open url_DB
Set RecSet = Server.CreateObject("ADODB.Recordset")
' PRELEVA LE ULTIME 10 NEWS DAL DATABASE (SE SONO PRESENTI)
SQL = "SELECT TOP 10 * FROM NEWS ORDER BY ID DESC"
RecSet.Open SQL, Conn, adOpenStatic, adLockOptimistic
' CONTROLLA SE SONO PRESENTI NEWS NEL DB
If RecSet.Eof = False Then
%>
<table border="0" cellpadding="0" cellspacing="0" width="34%">
<%
' VISUALIZZA LE PRIME 10 NEWS
Do until RecSet.Eof
%>
<tr>
<td width="6%"><font face="Verdana" size="2">&gt;</font></td>
<td width="94%"><font face="Verdana" size="2">"><%=RecSet("titolo")%></font
></td>
</tr>
<%
RecSet.Movenext
Loop
%>
</table>
<%
End IF
RecSet.Close
Conn.Close
Set Conn = Nothing
Set RecSet = Nothing
%>



scusatemi ancora per la cosa studpia che vi chiedo...grazie