Mega Code Archive

 
Categories / Java Tutorial / JSP
 

Count to 10 Example using JSP Scriptlet

< html>   <head>     <title>Count to 10 Example(using JSP Scriptlet)</title>   </head>   <body>     <%     for(int i=1;i<=10;i++)     {     %><%=i%>     <br />     <%     }     %>   </body> </html>