Saturday, February 23, 2013

Break in ASP

<!DOCTYPE html>
<html>
    <body>
        <%
            For i=0 to 10
                if(i=5) then exit for
                response.write(i)
            Next
        %>
    </body>
</html>

No comments:

Post a Comment