View Single Post
  #2 (permalink)  
Old 08-07-2007, 09:35 AM
toby toby is offline
Member
 
Join Date: Jul 2007
Posts: 40
toby is on a distinguished road
If there are many pages with the same data in them simply create an include file("my_include_file.jsp"). All you need to do in order to be able to do this is place all the html code that is common in one jsp file and then include it in any other jsp file(s) by using the following syntax:

Code:
<jsp:include page="my_include_file.jsp"/>
Reply With Quote