Write a simple JSP program to display "M. Ed ICT" 10 times.
<html>
<head>
<title>A
simple JSP program</title>
</head>
<body>
<h1>Displaying "M. Ed ICT"
10 times! </h1>
<table>
<%
for(int i=1; i<=10; i++)
{
Out.println(“M.Ed
ICT”);
}
%>
</table>
</body>
</html>
Comments
Post a Comment