Declarations




Example of a declaration:

<%!
public java.util.Data PrintDate()
{
return(new java.util.Date());
}
%>


This declaration can now be used by an expression in order to print the date to the page:

The current date is:
<%= PrintDate() %>