请问怎么将文章分成5行4列输出??

来源:百度知道 编辑:UC知道 时间:2024/06/04 02:57:22
<% If Not rsnews.EOF Or Not rsnews.BOF Then %>
<%
'生成页码
if rsnews_total mod list_repeat = 0 then
mm_page_count= rsnews_total/list_repeat
else
mm_page_count= int(rsnews_total/list_repeat)+1
end if
for i = 1 to mm_page_count
mm_page_list =mm_page_list&vbcrlf&" <a href="&chr(34)&"list_"&i&".htm"&chr(34)&">第"&i&"页</a> "
next
%>
<% While ((Repeat1__numRows <> 0) AND (NOT rsnews.EOF)) %>
<%
areyou = areyou&"<td>● <a href=""../"&(rsnews_commend.Fields.Item("file_name").Value)&chr(34)&" target="&chr(34)&"_blank"&chr(34)&">"&(rsnews_commend.Fields.Item("productname").Value)&"</a></td>"
%>
<%
if mm_temp <> mm_page then
mm_file = "list_"& mm_page &".htm"

你应该给出在什么情况下,实现‘将文章分成5行4列输出’的。这样的话,好针对你的问题解答。

例:
1。在WORD等实现(显然你不是这个问题)
2。在网页中用HTML来实现的
3。JS等脚本语言来实现的
4。自做一个文字处理器时
等。