Home Jsp Simple-jsp-example HTML tags in JSP



HTML tags in JSP
Posted on: March 12, 2008 at 12:00 AM
In jsp we have the facility provided to use the html tag inside the JSP code.

HTML tags in JSP

        

In jsp we have the facility provided to use the html tag inside the JSP code. 

In this example we have used the html tag inside the println() method of the out implicit object which is used to write the content on the browser. 

 

The code of the program is given below:

 

 

<html>
<head>
<title>Use of html tag in jsp code</title>
</head>
<body>
<center>
<FONT SIZE="5" COLOR="#660033">Use of html tag in jsp code</FONT>
<table bgcolor="#CFE7E7" border="1">
<tr><td>
<%@ page session="false" %>
<%
   out.println("<code>out</code> is an <b>");
   out.println(out.getClass().getName());
   out.println("</b> object.");
%>
</td></tr>
</table>
</center>
<body>
<html>

Output of  the program:

Download this example.

Related Tags for HTML tags in JSP:
htmlcjspidebrowserobjectmethodsedprintvicontenttagintthisidwriterowjsrowsexampletoimplicitwsecilexamciwseilitliuseimbrowseinmlmntoutsidsidelnjmeobjproxawhichxampssphtmishamplcodcodessrithavintljepleplprodeono


More Tutorials from this section

Ask Questions?    Discuss: HTML tags in JSP   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.