Jump to content

marquee using asp


vadder85

Recommended Posts

i have one problem here...hope someone can help me..i want to display all my data from the database using asp and make it work in marquee...but the problem is the information is displayed separately rather than displayed continuously or in other word append to each data..below are the example...WHAT I WANT...info1....info2....info3....info4.....info5..... NOT LIKE THIS...info1....info2....info3....info4....info5...hope someone will help me...tq so much

Link to comment
Share on other sites

i want to display all my data from the database using asp and make it work in marquee...info1....info2....info3....info4.....info5.....

Hi,Make a string in asp which contains data from the DB,then pass this string to Marquee
<%  Dim Str_Scroll  Do While Not RS.EOF           Str_Scroll = Str_Scroll &"...."& RS.Fields(0)            RS.MoveNext  Loop%><Marquee><%=Str_Scroll%></Marquee>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...