Trying to get some sort of javascript integrated into my Do While loop that will allow the results to display in a horizontal non stop scroll
here is my asp code
<%
Function displayScores(startDay,endDay)
articleSQL="SELECT * FROM xlaANMarticles INNER JOIN xlaANMiArticlesZones ON xlaANMarticles.articleid = xlaANMiArticlesZones.articleid WHERE (xlaANMiArticlesZones.zoneid = 22)AND (xlaANMarticles.lastupdate2 < DATEADD(d, " & startDay & ", GETDATE())) AND (xlaANMarticles.lastupdate2 > DATEADD(d, " & endDay & “, GETDATE())) AND (xlaANMarticles.headline LIKE ‘%|%’) ORDER BY xlaANMarticles.headline”
Set articleResult = Server.CreateObject(“ADODB.Recordset”)
articleResult.Open articleSQL,HeaderDB,3,3
%>
<%
If NOT articleResult.EOF Then
Do While NOT articleResult.EOF %>
<strong style="font-size:120%;"><a href="/newsmanager/templates/localnews_story.asp?z=<%=trim(articleResult("description"))%>&a=<%=articleResult("articleid")%>"><%=Right(articleResult("headline"),Len(articleResult("headline")) - (InStr(articleResult("headline"),"|")))%></a></strong><br />
<% last_sport_cat = sport_cat
articleResult.MoveNext
Loop
End If
End Function %>