JSP Include Tag Example

13 years ago

JSP Include tag is used to include another resource in current JSP. Another resource can be either static or dynamic…

JSP Forward Vs Redirect

13 years ago

JSP Forward Vs Redirect: JSP Forward is faster than Redirect. Forward    Control can be forward to resources available within…

JSP Redirect Example

13 years ago

JSP Redirect: In JSP Redirect URL is changed and it is slower than JSP Forward. Page redirection is generally used…

JSP Forward Tag Example

13 years ago

Forward tag in JSP forwards request to another source. Another source can be anything like HTML file, Servlet or anothe…

JSP include Directive

13 years ago

Include Directive in JSP is an instruction from JSP to JSP Engine about including static file at Translation Time. The…

Taglib Directive in JSP

13 years ago

The JavaServer Pages API allows you to define custom JSP tags that look like HTML or XML tags and a…

JSP Page Directive

13 years ago

Page Directives in JSPs are instruction from JSPs to JSP Engine. The page directive is used to provide instructions to…

JSP Directives

13 years ago

JSP directives provide directions and instructions to the container, telling it how to handle certain aspects of JSP processing. Directives…

JSP Scripting Elements

13 years ago

Scripting elements are important part of JSP that makes page dynamic. Scripting elements can be classified in 3 categories: 1.…

Creating a JSP Page & Environment Setup

13 years ago

To create the first jsp page, write some html code as given below, and save it by .jsp extension. We…