Ciao ragazzi sono la vostra Maria
ho prelevato lo script che offre Html per uno scrolling news e dopo averlo adattato al mio database access

NON FUNZIONA...

dove sto sbagliando? Cosa non ho inserito?

Ecco lo script adattato...

<%
cString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("/mdb-database/mad_duello.mdb")

'set connession to database
Set objConn=Server.CreateObject("ADODB.Connection")

'open connession to database
objConn.Open cstring

Set rs = Server.CreateObject("ADODB.Recordset")

nometabella="articoli" ' inserisci qui il nome della tabella da vedere

SQL = "select TOP 15 * from "&nometabella&"" 'where ......"

'apro il rs
rs.Open sql, objConn
stringa = ""
do until rs.eof

For Each campo in rs.Fields
if not (campo.name = "id" or campo.name = "AD_TITLE") then
'non stampa i campi non richiesti
stringa = stringa & campo &"il"
end if
next

rs.movenext
loop

'chiudo tutto
rs.close
set rs=nothing

objConn.close
set objconn=nothing
%>


<script language="JavaScript1.2">
//Larghezza del testo scorrevole(in pixels)
var marqueewidth=700
//Altezza del testo scorrevole (in pixels, solo Netscape)
var marqueeheight=20
//Velocit?
var speed=6
//Contenuto
var marqueecontents='<font face="Arial"><font color=ff0000>
<big><%=stringa%></big>
</font>'

if (document.all)
document.write('<center><marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+' </marquee></center>')

function regenerate(){
window.location.reload()
}

function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.
document.write('<nobr>'+marqueecontents+'</nobr>')
document.cmarquee01.document.cmarquee02.document.c lose()
thelength=document.cmarquee01.
document.cmarquee02.document.width
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=the length*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqu eewidth
scrollit()
}
}

window.onload=regenerate2
</script>


<ilayer width=&{marqueewidth}; height=&amp;{marqueeheight}; name="cmarquee01">
<layer name="cmarquee02"></layer>
</ilayer>


</body>
</html> </body>