What do you mean by JSP? Write a program in the JSP to display Message "I Love Programming" 100 times.
Rajkumar Lama
September 02, 2019
Java
,
Java JSP program example
,
Java programming
,
JSP program
,
What is jsp?
JSP is a Java Server side technology that does all the processing at server. It is used for creating dynamic web application using Java as programming language.
JSP Program to print "I Love Programming" 100 times.
Program
JSP Program to print "I Love Programming" 100 times.
Program
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html" charset=UTF-8"> <title> A simple JSP program </title> </head> <body> <h1> Displaying "I love Programming 100 times !!" </h1> <table> <% for(int i=1; i<=100; i++){ %> <tr> <td> I Love Programming </td> </tr> <% } %> </table> </body> </html>