
Descibe the syntax of the page directive with example In JSP.

Hi,
The JSP page directive tag syntax is:
<%@ page attributeName="values" %>
The JSP page directive tag examples are:
<%@ page import = "java.util.*" %> <%@ page extends = "package.class"%> <%@ page language = "java" %>
Thanks