Hi, I am having one question on jsp. I am having 30 jsp pages in my application. I have some common data to the all pages.
Where i have to write the common data to get all the pages.
Thanks.
Printable View
Hi, I am having one question on jsp. I am having 30 jsp pages in my application. I have some common data to the all pages.
Where i have to write the common data to get all the pages.
Thanks.
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"/>