Search This Blog

Thursday, 6 September 2012

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


Filename-simple.jsp

<html>
<body>
My First Jsp Page <br>
Today Date and time is=
<%= new java.util.Date()%>
<%
          double myno=Math.random()*100;
          out.println("<br> Random number="+myno);
%>
</body>
</html>


Output
My First Jsp Page 
Today Date and time is= Wed Apr 11 21:53:07 IST 2012 
Random number=14.44157339390083

No comments:

Post a Comment