JSP Sessions
A Session refers to all the request that a single client makes to a server. A session is specific to the user and for each user a new session is …
JSP tutorials
A Session refers to all the request that a single client makes to a server. A session is specific to the user and for each user a new session is …
JSP useBean action The JSP useBean used to instantiates a java bean with a specific name and scope. <jsp:useBean id=”person” scope=”session” class=”com.java.connect.Person” /> JSP setProperty action The JSP action setProperty …
The JSP param action used to pass the request parameter to destination page, while including or forwarding using include or forward action tag. Example of param action in jsp:include action …
Forward action tag in JSP transfer the control of one JSP page to another JSP with specify URL. Forward also can be static or dynamic as include action. When we …
include action tag Include action tag is almost similar to include directive. This include can be static or dynamic. This include file is first compiled and output of this file …
Action tag is used to transfer the control between pages and is also used to enable the use of server side JavaBeans. Instead of using Java code, the programmer uses …
Scriptlet tag is a type tag used for inserting Java Code into JSP. Notation of the Scriptlet tag is: <% %> To begin the Scriptlet tag, the user must add …
A user can customize actions from their tag file using the Tag Lib directive. The Tag Lib directive is a collection of custom tags. The syntax of Tag Lib directive …
Include directive is a type of directive tag. If a programmer wants to include contents of a file inside another, then the Include directive is used. The file included can …
contentType attribute is used to set the mime type and character set of the JSP. The user can make use of any MIME type or character set valid for the …