Using Beans in JSP
Java Beans are reusable components. They are used to separate Business logic from the Presentation logic. Internally, a bean is just an instance of a class. 102 Hits |
Comments |
Ratings (0)
JSP Fundamentals
This is an excellent tutorial on JSP for the beginners. Tutorial describes how to use Bean in JSP, Connection Pooling in JSP and the use of taglibs. 256 Hits |
Comments |
Ratings (0)
Disabling Session in JSP
In this tutorial you will learn how to disable session creation in the JSP pages. Disabling the session in some pages will improve the performance of your JSP container. 99 Hits |
Comments |
Ratings (0)
JSP Cookies Example
This tutorial shows how to handle cookies in JSP pages. In this tutorial you will learn how to add cookies through jsp page and then show the value of the same cookie in another JSP page. 114 Hits |
Comments |
Ratings (0)
Accessing database from JSP
In This article I am going to discuss the connectivity from MYSQL database with JSP.we take a example of Books database. This database contains a table named books_details. 108 Hits |
Comments |
Ratings (0)
Retrieving the data posted to a JSP file from HTML file
Now I will show you how to retrieve the data posted from a HTML file in a JSP page. Consider an html page that prompts the user to enter his/her name, let's call it getname.htm. 95 Hits |
Comments |
Ratings (0)
Reading the Request Information
When an HTTP client such as web browser sends a request to a wen server, along with the request it also sends some HTTP variables like Remote address, Remote host, Content type etc. 78 Hits |
Comments |
Ratings (0)
Writing the Date JSP
Till now you learned about the JSP syntax, now I will show you how to create a simple dynamic JSP page that prints the current date and time. 87 Hits |
Comments |
Ratings (0)
Detail introduction to JSP Declaratives
JSP Declaratives begins with <%! and ends %> with .We can embed any amount of java code in the JSP Declaratives. Variables and functions defined in the declaratives are class level and can be used anywhere in the JSP page. 91 Hits |
Comments |
Ratings (0)
Introduction to the JSP tags
In this lesson we will learn about the various tags available in JSP with suitable examples. In JSP tags can be devided into 4 different types. 71 Hits |
Comments |
Ratings (0)
JSP Architecture
JPS pages are high level extension of servlet and it enable the developers to embed java code in html pages. JSP files are finally compiled into a servlet by the JSP engine. 84 Hits |
Comments |
Ratings (0)
JSP Tutorials - Introducing Java Server Pages Technology
JavaServer Pages (JSP) technology is the Java platform technology for delivering dynamic content to web clients in a portable, secure and well-defined way. 78 Hits |
Comments |
Ratings (0)
Introduction to JSP
Java Server Pages or JSP for short is Sun's solution for developing dynamic web sites. JSP provide excellent server side scripting support for creating database driven web applications. 67 Hits |
Comments |
Ratings (0)