Saturday, February 23, 2013

Printing even number in ASP

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

No comments:

Post a Comment