asp迴圈語句總結_應用技巧

來源:互聯網
上載者:User

asp的迴圈語句有以下幾類:

迴圈語句的作用就是重複執行程式代碼,迴圈可分為三類:一類在條件變為“假”之前重複執行語句,一類在條件變為“真”之前重複執行語句,另一類按照指定的次數重複執行語句。在VBScript 中可使用下列迴圈語句:

Do...Loop: 當(或直到)條件為“真”時迴圈。

While...Wend: 當條件為“真”時迴圈。

For...Next: 指定迴圈次數,使用計數器重複運行語句。

For Each...Next: 對於集合中的每項或數組中的每個元素,重複執行一組語句。

現在看幾個例子:

<body>do while....loop<br /><%'do while....loop 類似.net中的while(){}i=6Do while i < 10response.Write(i&"<br>")i=i+1Loop%>do ....loop until<br /><%'do while....loop 類似.net中的while(){}i=6Do response.Write(i&"<br>")i=i+1Loop until i < 10%>while....wend <br /><%  i=10  while i<20  response.Write(i&"<br>")  i=i+1  wend %>For...Next<br /><%  for i=0 to 10       ' 包括0到10  response.Write(i&"<br>")  if i=5 then  exit for  end if  next%>For.....each....next<br /><% dim array(3) array(1)="A" array(2)="B" array(3)="C" for each a in array response.Write(a&"<br>") next%></body></html>

從資料庫讀取資料

<%    while not rs.eof  %>  <li><a href="#"><%=rs("classname")%></a></li>  <%   rs.movenext   wend  %>

以上就是asp迴圈語句小結,希望對大家掌握asp迴圈語句有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.