Computer Notes, Programming codes, Hardware and Networking Tip, Entertainment, Biography, Internet Tip, Tech News, Latest Technology, YouTube,

What do you mean by JSP? Write a program in the JSP to display Message "I Love Programming" 100 times.

Java, Java JSP program example, Java programming, JSP program, What is jsp?, What do you mean by JSP? Write a program in the JSP to display Message "I Love Programming" 100 times, jsp web application example, jsp program example without output, jsp code to print hello world, jsp program to print 100 times, jsp, jsp in java, jsp tags, jsp web application examples,

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
 
<!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> 


Post a Comment

MKRdezign

Contact Form

Name

Email *

Message *

Powered by Blogger.
Javascript DisablePlease Enable Javascript To See All Widget