<%
IF not rs.eof then ' 如果有資料
FOR iPage=1 to rs.PageSize ' 顯示資料
%>
| <%=(rs.RecordCount+1)-((page-1)*10+iPage)%> |
<%if rs("GForManage") = "M" then%>
admin
<%else%>
name
<%end if%>
: |
<%=rs("GName")%> |
|
<%=datevalue(rs("GDateTime"))%> |
| |
Title: |
<%=rs("GSubject")%> |
<% if rs("GForManage") = "M" then %>
<%=Replace(Replace(rs("GContent"),"|","'"),vbCrLf," ")%> |
|
" width="96" height="96" border="1" style="border: 1px solid #666666"> |
|
<% elseif rs("GForManage") = "Y" then %>
" width="96" height="96" border="1" style="border: 1px solid #666666"> |
.......... 只留言給管理者 .......... |
|
|
<% else %>
" width="96" height="96" border="1" style="border: 1px solid #666666"> |
<%=Replace(Replace(rs("GContent"),"|","'"),vbCrLf," ")%> |
|
|
<% end if %>
<% if rs("RContent") <> "" then %>
| <%=datevalue(rs("RDateTime"))%> |
<%=rs("RName")%> - 回覆 |
" width="96" height="96" border="1" style="border: 1px solid #666666">
|
<%=Replace(Replace(rs("RContent"),"|","'"),vbCrLf," ")%> |
|
|
<% end if%>
---------------------------------------------------------------------------------------------------------
<%
rs.MoveNext
IF rs.EOF THEN EXIT FOR
Next
End If
%>
|