JSP Forward Tag Example

Forward tag in JSP forwards request to another source. Another source can be anything like HTML file, Servlet or anothe JSP file. The forward action terminates the action of the current page and forwards the …

JSP include Directive

Include Directive in JSP is an instruction from JSP to JSP Engine about including static file at Translation Time. The include directive is used to includes a file during the translation phase. This directive tells …

Taglib Directive in JSP

The JavaServer Pages API allows you to define custom JSP tags that look like HTML or XML tags and a tag library is a set of user-defined tags that implement custom behavior. The taglib directive …

JSP Page Directive

Page Directives in JSPs are instruction from JSPs to JSP Engine. The page directive is used to provide instructions to the container that pertain to the current JSP page. You may code page directives anywhere …

JSP Directives

JSP directives provide directions and instructions to the container, telling it how to handle certain aspects of JSP processing. Directives in JSPs are instruction from JSPs to JSP Engine. Directives are classified in 3 categories: …

JSP Scripting Elements

Scripting elements are important part of JSP that makes page dynamic. Scripting elements can be classified in 3 categories: 1. Declaration Tags. 2. Expression Tags. 3. Scriptles. Declaration Tags: Declaration Tags is used to define …