Structure Query Language, C programming, Java, Servlet, Jsp, Unix

Sunday 1 April 2012

Write a simple JSP page to display a simple message (It may be a simple html page).


[hello.jsp]

<html>
<body>
<table width=100% height=100%>
<tr>
<td align="center">
<%= "========================" %><br>
<font color="RED" face="Lucida Console"><%="HELLO WORLD" %></font><br>
<%= "========================" %>
</table>
</body>
</html>

2 comments: