一段asp小代码,高人进来,有赏!
<%Set Rs17=Server.createobject("adodb.recordset")
Sql="select top 16 * from ProductList where ClassID='产品中心' order by date desc"
Rs17.open sql,conn,1,1
Dim row17_count
row17_count=1
%>
<tr>
<%do while not rs17.eof%>
<td width=25% align="left"><a href="Html/<%=rs17("ID")%>.html" target="_blank" title="点击了解-<%=rs17("Title")%>">
·<%=Left(Rs17("Title"),8)%></a></td>
<% if row17_count mod 4 =0 then%>
</tr>
<%end if
row17_count=row17_count+1
if row17_count>104 then exit do
rs17.movenext
loop%>
上面是一段生成静态页面内容的函数,请帮我一句一句解释一下;困惑的是,为何一个模板只能放一个这个函数,放两个上去想生成另外一块内容的时候,后台放函数的页面就打不开了?问题出在哪里?
追问:还有补充吗