Archive for: July, 2014

HTML Introduction

HTML is the standard markup language used to create web pages and it was made by the World Wide Web Consortium (W3C). HTML Prerequisites: For HTML, You will simply need a basic text editor, such as Notepad and an Internet browser, such as Internet Explorer or Chrome. And also you can use a dedicated software program such as Dreamweaver or Microsoft…

Read More →

JSP useBean, setProperty & getProperty

useBean, setProperty & getProperty Action Tags in JSP: First let’s see the syntax for all these action tags so that we can understand what each tag is doing and how they are related. useBean Action Tag: The useBean action is widely used. It first searches for an existing object utilizing the id and scope variables. If an…

Read More →

JSP Response Implicit Object

Response Implicit Object: In JSP, request is an implicit object of type HttpServletRequest. This can be used to get request information such as parameter, header information etc. This is created by the web container for each request done. This is mainly used for modifying the response which is being sent to the browser after processing…

Read More →

JSP Request Implicit Object

Request Implicit Object: In JSP, request is an implicit object of type HttpServletRequest. It is created for each jsp request by the web container. It can be used to get request information such as parameter, header information etc. This can be used to get the data on a JSP which has been entered by a…

Read More →

JSP Implicit Objects

Implicit Objects: Implicit Objects are the ones which are available to the users which can be used without declaration. These pre-defined or implicit variables are the ones which are similar to our conventional JAVA objects which we can be used in JSP to control and modify the flow of functioning.   In JSP we have…

Read More →

JSP Forward Tag

JSP Forward Tag & Param Tag: The jsp:forward action tag is used to forward the request to another resource it may be jsp, html or another resource. When this action is encountered on a JSP page the control gets transferred to the page mentioned in this action. Syntax: <jsp:forwardpage=”URL of the another static, JSP OR…

Read More →

JSP Include Tag

JSP Include Tag with Param Tag: This tag is similar to the include directive but the difference is that the file is included during the request processing while the directive being at the translation phase. Syntax: <jsp:includepage=”relative URL”flush=”true”/>   Attribute Description page A JSP or a relative URL of a JSP if that is not…

Read More →

JSP Action

JSP Action Tags: JSP provides Standard (Action) Tags for use within the JSP pages. These tags are used to eliminate or remove the scriplet code from JSP page since they are not recommended nowadays. Also its not considered good to put JAVA code inside the JSP page. Unlike directives like these action tags are used…

Read More →

JSP Taglib Directive

taglib Directive: The JSP API’s allows us 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 behaviour. The taglib directive declares that our JSP page uses a set of custom tags, identifies the location of the library, and provides a means…

Read More →

JSP Include Directive

Include Directive: This directive is used to include a file while translation phase. This directive tells the container to merge the contents of the JSP file given in the include directive to the current JSP which is being handled. This can be coded anywhere in the JSP page. Then the source JSP page is converted…

Read More →

Back to Top