|
<%
For i = 0 to RecordCount-1
response.write("" & format_date("%N %d%s", EventDate(i)) & "")
If Not i = RecordCount-1 then
response.write(" - ")
End IF
'Just to make sure there is some space incase it gets crowded
'Most events ever has been 7 as of 7/21/03
If i = 4 then
response.write(" ") End If Next %> |
|
|