Mega Code Archive

 
Categories / Java Tutorial / JSP
 

Declaration Tag Example

<%!   String name = "Joe";   String date = "8th April, 2002"; %> <HTML>   <TITLE>Declaration Tag Example</TITLE>   <BODY>     This page was last modified on <%= date %> by <%= name %>.   </BODY> </HTML>