<%
i = 0
     Do While (i < 5)
         For j = 1 To 1
             If (i = 3) Then
    response.Write( "Yes,I’m "& i&",you are right!
")
                 Exit For
             End If
            response.Write( "I’m not 3, I’m " & i&"
")
             ’Do something else...
            
         Next
         i = i + 1
     Loop

%>