News:

Choose a design and let our professionals help you build a successful website   - ITAcumens

Main Menu

How to Create JSP Page

Started by VelMurugan, Mar 06, 2009, 04:46 PM

Previous topic - Next topic

VelMurugan

How to Create JSP Page           

In this section we will show you how you can create JSP page and then test on tomcat server. Creating a new JSP page is very simple and any text editor can be used.

In this example I will show you how to create a simple JSP page that prints current date and time on the browser.

Java date class is used to get the current date and then print on the web browser.

Steps to Create JSP page:

Step 1:

Open note page and then paste the following in the note pad.
<%@page contentType="text/html" import="java.util.*" %>

<!--

http://www.roseindia.net/jsp

-->

<html>
<body>
<p>&nbsp;</p>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing
="0" width="460" bgcolor="#EEFFCA">

<tr>
<td width="100%"><font size="6" color
="#008000">&nbsp;Date Example</font></td>

</tr>
<tr>
<td width="100%"><b>&nbsp;Current Date
and time is:&nbsp; <font color="#FF0000">


<%= new java.util.Date() %>
</font></b></td>
</tr>
</table>
</center>
</div>
</body>
</html>


Step 2:

Save the file and enter the file name "date.jsp" and click on the "Save" button.

Note that the file name is enclosed in double quotes "date.jsp".

Step 3:

Now deploy the application and test it.

Source : roseindia