JSP Java

//File: index.html
<%@ page errorPage="errorpage.jsp" %>

  
    Welcome to JSP
  
  
    
      
        
          <%@ include file="titlebar.jsp" %>
        
      
      
        
        <%
          out.println("
This is the client area.
");
        %>
        
      
    
  

//////////////////////////////////////////////////////////////
//File: titleBar.jsp

  
    
  

      <%
        // Get the User's Name from the session
        out.println("Hello: " + request.getParameter("user") + "");
      %>
    
  
           
       
IncludingAnotherJspPage.zip( 89 k)