Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions? | Software Development
 

Include Static HTML Page in JSP

This example shows how to include static html page in jsp.

Include Static HTML Page in JSP

                         

This example shows how to include static html page in jsp.

In JSP, there are two ways to include another web resource.
1. include directive and 
2. jsp:include element.

Using include directive inserts text of another file and processed when the JSP is translated into a servlet class. So you can use include directive when any chunk of code is needed to be reused.

In this example <%@ include file="static.html" %> tag is used to include html page. The following includeStatic.jsp page shows the include tag.

includeStatic.jsp

<html>
    <head><title>Include Static Page</title></head>
    <body>
        <H2>Contents of html page display here:</H2>
            <%@ include file="static.html" %>
    </body>
</html>

Here is the html page "static.html" 

<html>
    <head><title>Static HTML Page</title></head>
    <body>
        <H3>This is the html page:</H3>
        <b><font color='blue'> My name is sandeep kumar suman</font></b><br>
        <b><font color='blue'> Roseindia Technology Pvt Ltd, New Delhi</font></b>
    </body>
</html>

Start Tomcat. Type the url: http://localhost:8080/ServletExample/jsp/includeStatic.jsp on your browser.

Following output will be displayed:

Download Source Code

                         

» View all related tutorials
Related Tags: c string stl io sed arguments type jstl boolean tag return ole this oo check js if boo ie with

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.