哪种可以用
第一种:sql="select top5 * from article order by time desc"
rs.open sql,conn,1,1
while not rs.eof
%>
strtemp=strtemp+"<tr><td>"
strtemp=strtemp+"<a href="techincal.asp?id=<%=rs("id")%>"><%=rs("title")%></a>"
strtemp=strtemp+"</td></tr>"
<%rs.movenext
wend
%>
document.write(strtemp)
第2种:
sql="select top5 * from article order by time desc"
rs.open sql,conn,1,1
if rs.eof or rs.bof then
%>
<tr>
<td height="18">
response.write "暂时没有内容"
<%else
do while not rs.eof
%>
<a href="techincal.asp?id=<%=rs("id")%>"><%=rs("title")%></a>
</td>
</tr>
<%
loop
end if
%>
好像都不能用。