-
<%
For i = 1 to oRs.PageSize
if oRs.EOF then
Exit For
end if
Title=oRs("P_ProductName")
P_forder=oRs("P_Forder")
forder=oRs("M_Name")
if Len(Title)>35 then
NTitle=left(oRs("P_ProductName"),2)&"..."
else
NTitle=oRs("P_ProductName")
end if
d_time=split(oRs("P_ProductAddTime")," ")
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 %>

