|
|
<%
if not rs.eof or not rs.bof then
intPageSize = 5
rs.PageSize = intPageSize
intPageCount = rs.PageCount
'检验页号
intPageNo = Request("PageNo")
intPageNo = AdjustPageNo(intPageNo, intPageCount)
rs.AbsolutePage = intPageNo
for i = 1 to intPageSize
%>
|
|
<%=Left(Rs("FaqTitle"),35)%> |
|
<%=Left(Rs("FaqAuthor"),10)%>
<%=Rs("LastUpdateTime")%> |
<%=convertToHtml(Rs("FaqContent"))%> |
<%If Rs("FaqReply") <> "" Then%>
|
|
管理员回复
<%=Rs("ReplyTime")%> |
<%=convertToHtml(Rs("FaqReply"))%> |
<%
else
end if
%>
|
|
<%
Rs.MoveNext
if (rs.eof) then
exit for
end if
next
strPageNavigation = GetPageNavigation(intPageNo, intPageCount,"index.asp")
%>
<%Else%>
<%End If%>
|
|
|
 |