-
<%
For i = 1 to oRs.PageSize
if oRs.EOF then
Exit For
end if
Title=oRs("d_title")
dclass=oRs("d_classid")
if Len(Title)>35 then
NTitle=left(oRs("d_title"),2)&"..."
else
NTitle=oRs("d_title")
end if
d_time=split(oRs("d_time")," ")
dl_time=split(d_time(0),"-")
ds_time=""
for j=0 to 2
if len(dl_time(j))<2 then
ds_time=ds_time&"-0"&dl_time(j)
else
ds_time=ds_time&"-"&dl_time(j)
end if
next
ds_time=right(ds_time,10)
response.Write("
- ·"&ds_time&"|"&NTitle&"") if i=5 or i=10 then response.Write(" ") end if oRs.movenext Next %>

