Action Elements
Displaying applet in JSP
The jsp:plugin action tag is used to embed applet in the jsp file. The jsp:plugin action tag downloads plugin at client side to execute an…
set and getProperty
The setProperty and getProperty action tags are used for developing web application with Java Bean. In web devlopment, bean class is mostly used because it…
jsp:useBean
The jsp:useBean action tag is used to locate or instantiate a bean class. If bean object of the Bean class is already created, it doesn’t…
Java Bean Class
A Java Bean is a java class that should follow following conventions: It should have a no-arg constructor. It should be Serializable. It should provide…
jsp:include
The jsp:include action tag is used to include the content of another resource it may be jsp, html or servlet. The jsp include action tag…
jsp:forward
There are many JSP action tags or elements. Each JSP action tag is used to perform some specific tasks. The action tags are used to…