|
Answer» The standard actions available in JSP are as follows:
- <jsp:INCLUDE>:It includes a response from a servlet or a JSP page into the current page.It differs from an include directive in that it includes a resource at request processing time, whereas the include directive includes a resource at translation time.
- <jsp:forward>:It forwards a response from a servlet or a JSP page to ANOTHER page.
- <jsp:useBean>:It makes a JavaBean available to a page and INSTANTIATES the bean.
- <jsp:setProperty>:It sets the properties for a JavaBean.
- <jsp:GETPROPERTY>:It gets the value of a property from a JavaBean component and adds it to the response.
- <jsp:param>:It is used in conjunction with <jsp:forward>;, <jsp:, or plugin>; to add a parameter to a request. These PARAMETERS are provided using the name-value pairs.
- <jsp:plugin>:It is used to include a Java applet or a JavaBean in the current JSP page.
The standard actions available in JSP are as follows:
|