JSP standard actions

JSP Standard action are predefined tags which perform some action based on information that is available at the time when the browser requested a jsp page.   There are 11 jsp standard actions are available S.No.  Standard Actions  Descriptions  1.  <jsp:useBean>  to create or search an exisiting bean  2  <jsp:setProperty>  to set the bean property ...

JSP include standard action and include directive

S.No.  include directive  JSP include <jsp:include page="..." ></jsp:include>..........  1. Content of the file specified in the attribute “file” of the include directive will be pasted as it is at tranlation time , where include directive is used in the jsp  At runtime, the includED file will be executed and the response will be included in the includING ...