Marquee with Text Deribved from Database

  • Thread starter Thread starter John Castle
  • Start date Start date
J

John Castle

I have a marquee but want to source its text from database
queries so that I can arrange for messages to time -
expire. Is there an easy way to do this? I can't find any
obvious scripts on the web so far.
 
Hi John,

You'll need to utilize ASP / ASPX to accomplish.

Once you have the database open and have selected the record to display
you'd use.
<marquee><% =rs("Msg") %></marquee>
 
Back
Top