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
Today Date and time is= Wed Apr 11 21:53:07 IST 2012
Random number=14.44157339390083
No comments:
Post a Comment