Problem with marquee
<div id="Layer2">
<%While (NOT Recordset2.EOF)%>
<marquee width=30% scrollamount=5 scrolldelay=2>
<%=(Recordset2.Fields.Item("Mensagem").Value)%>
</MARQUEE>
<%Recordset2.MoveNext()
Wend%>
</div>
I have this code in my form.
I have a table with messages and i want to scroll them in my web page. And i have 3 entries in my table.
The problem is that the messages appear in one line (that i want) but they appear all together (the first doesn´t finish and the second is already on top of the first, the second doesn´t finish and the third on top of the second).
Please help me.
Thank you
|