How to write a for loop in a JSP page?


Following is the for loop example −

<%! int fontSize; %>
<html>
   <head>
      <title>FOR LOOP Example</title>
   </head>
   <body>
      <%for ( fontSize = 1; fontSize <= 3; fontSize++){ %>
         <font color = "green" size = "<%= fontSize %>">
            JSP Tutorial
         </font><br />
      <%}%>
   </body>
</html>

The above code will generate the following result −

JSP Tutorial
JSP Tutorial
JSP Tutorial

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Jul-2019

5K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements