Quick References
      ADO
      ASP
      CSS2
      HTML
      JavaScript
      Jet SQL
      VBScript
      WML
      WMLScript
      WSH
      XHTML
      XML DOM
      XSLT

Features
      Knowledge Base
      Tutorials

Partners
     ZVON.ORG
     XML
     Planet Source Code
     VisualBuilder
     Web Design
     Your HTML Source
     XML/XSLT Forums
     ASPAlliance
     Scripts
     
     Programmers Heaven
     Tek-Tips Forums
     Developer Fusion
     Code Project











STATEMENT:  While

While . . . WEnd
 
The While conditional statement repeats a block of code as long as a conditional test is True.
 
You must end While statements with WEnd or you will get an error message. You can place While statements inside of other conditional statements.
 
Code:
<%
While testnumber = 1000
   Rem You can place all of the code you desire inside a While loop
WEnd
%>

 
Code:
<%
While Hour(Time) < 6
   Rem You can place all of the code you desire inside a While loop
WEnd
%>


 


Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information