JSP Tags Part Two
JSP Tags Part Two
Directives can have a number of attributes that you can list down as key-value
pairs and separate by commas.
<%@ ------------- %>
Three kinds of jsp directive tags:
A. Page directive: The page directive defines attributes that apply to an entire
JSP page. Syntax: <%@ page attribute=”values” %>
Action tag: The action tags are used to control the flow between pages and to use
Java Bean. Each JSP action tag is used to perform some specific tasks.
jsp:param sets the parameter value. It is used in forward and include mostly.