Example of Declaration

Declaration5.jsp

<%!

String name = “Java”;

String date = “5 JULY, 2011”;

%>

<HTML>

<TITLE>Declaration  Example</TITLE>

<BODY>

This page was last modified on <%= date %> by <%= name %>.

</BODY>

</HTML>

 Declaration6.jsp

<%!

private String getName()

{

return “Sharma”;

}

 

private int getAge()

{

return 30;

}

%>

<HTML>

<HEAD><TITLE>Declaration Tag – Methods</TITLE></HEAD>

<%= getName() %>, age <%= getAge() %>, is GOOD!

</HTML>

 

Leave a Reply

Your email address will not be published. Required fields are marked *