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 param action

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 …

JSP Forward action tag

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 …

JSP include action tag

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 …

JSP Action Tag

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 …

JSP Scriptlet tag

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 …

JSP Tag Lib directive

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 …

JSP Include 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 …

JSP page directive – contentType

 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 …