salve uso uno script per fare lo scroll dei link in una pagina aspx. ho dei problemi con il passaggio dell'array al javascript.
riporto il codice
<%
Dim vettore_stringhe=new ArrayList(3)
vettore_stringhe.Add("Il forum di HTML.it")
vettore_stringhe.Add("Il forum di HTML.it")
vettore_stringhe.Add("Il forum di HTML.it")
%>
<script type="text/javascript">
//configure the below five variables to change the style of the scroller
var scrollerdelay='3000' //delay between msg scrolls. 3000=3 seconds.
var scrollerwidth='150px'
var scrollerheight='105px'
var scrollerbgcolor='#0E1B8D'
//set below to '' if you don't wish to use a background image
var scrollerbackground=''
//configure the below variable to change the contents of the scroller (basta aggiungere una riga cambiare numero di variabile)
var messages=new Array('<%=vettore_stringhe%>')
nella pagina non viene visualizzato il testo che ho messo nel vettore ma sempre la scritta
System.Collections.ArrayList
dove sbaglio???