CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

JSP

JSP – Action Elements

We have discussed JSP scripting elements and directive elements in our previous articles. In this article, we are going to discuss JSP Action elements. Action elements in JSP are another type of syntactic element; translated into Java code that performs an operation. The web server processes these action elements when processing a client’s HTTP request. […]

JSP – Implicit Objects

We know that every JSP page turned into an equivalent Servlet. Every JSP equivalent Servlet must be extended from HttpJspBase class. HttpJspBase class is an abstract class with all implicit objects are defined. Those implicit objects are called JSP implicit objects. Because objects’ names are already defined, we have to use them as it is. In […]

JSP – Directive Elements

There are three types of elements in JSP; Directive elements, Scripting elements, and Action elements. In this article, we are going to discuss the Directive elements in JSP and their attributes. JSP directives are used to add or remove some behavior; like making the current page an error page, setting the content type, adding buffering […]

JSP – Scripting Elements

We can use JSP pages to write presentation logic to separate the business logic from presentation layer. Once the JSP page is requested; web-server translates into a Servlet and Servlet will insert the business logic wherever required. To write the presentation logic in JSP we need JSP elements. In this article I am going to discuss […]

JSP – An Introduction

Java Server Pages (JSP) is a technology used to create dynamic content for web pages. How different it is from a normal HTML file? There is a lot of difference. Normal HTML files are served by the web servers whenever the user requests the file. Also, JSP pages are served by web servers. But there […]

Scroll to top