首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

急问个循环有关问题。

2012-09-02 
急,问个循环问题。。div classindexTitle borderDot最新新闻 a hrefnews.aspimg srctemplates/

急,问个循环问题。。
<div class="indexTitle borderDot">最新新闻 <a href="news.asp"><img src="templates/index/default/images/b_more.png" style="vertical-align:middle" /></a></div>
  <div class="indexBox" id="adfoucsNews">
<%
set rs1=conn.execute("Select top 6 * From news order by id desc")
if not rs1.eof then
do while not rs1.eof
%>
  <ul>  
<li>
  <h3> <span class="time"> &nbsp;&nbsp;<font color="white"><%=rs1("time")%></font>
  </span>
  <a href="news.asp?id=<%=rs1("id")%>" title="<%=rs1("title")%>"><%=rs1("title")%></a></h3>
  </li>
<%
rs1.movenext
loop
else
%>
  <li>
  <h3> <span class="time"> &nbsp;&nbsp;<font color="white"><%=now()%></font>
  </span>
  <a href="#" title="暂无新闻..."</a> </h3>
  </li>
<%
end if
rs1.close
set rs1=nothing
%>

  </ul>
  </div>










上面代码一运行就进入死循环。。问题在哪。。。。

[解决办法]
没有看出错误。那你把语句改下。改成先做为空判断。。

另外。你的那个循环里:<ul>好像应该写在外面。

热点排行