JSP Tutorials

71. Declaring variable in JSP

By: aathishankaran : 2007-02-13

Description: The JSP you write turns into a class definition. All the scriptlets you write are placed inside a single method of this class. In JSP you can also add variables and can use the variables in the program. You can manipulate the variables value.


72. JSP Program to display Date

By: aathishankaran : 2007-02-13

Description: Here the program to display the date is given by executing this program we can get current date and time. Here the program shows you how to create a simple dynamic JSP page that prints the current date and time.


73. j_security_check in JSP

By: aathishankaran : 2007-02-13

Description: Some sites require that all users log-in using a username and password, before being able to visit any page.


74. Sessions in JSP

By: aathishankaran : 2007-02-13

Description: In this tutorial we will see about sessions in JSP. On a typical web site, a visitor might visit several pages and perform several interactions. If you are programming the site, it is very helpful to be able to associate some data with each visitor. For this purpose, "session"s can be used in JSP.


75. Tag libraries

By: aathishankaran : 2007-02-13

Description: JSP 1.1 introduces a method of extending JSP tags, called "tag libraries". These libraries allow addition of tags similar to jsp:include or jsp:forward, but with different prefixes other than jsp: and with additional features.


76. Tags in JSP

By: aathishankaran : 2007-02-13

Description: The important syntax elements of JSP are tags. The JSP tags do not use <%, but just the < character.


77. Using Tags in JSP

By: aathishankaran : 2007-02-12

Description: In this article we will learn about the various tags available in JSP with suitable examples. In JSP tags can be divided into 4 different types. These are:


78. Embedding java code in jsp sciptlets

By: aathishankaran : 2007-02-12

Description: We can embed the java codes inside the jsp sciptlets. We can use the java variables like request, response, and session variable etc. by using the java variables we can create the dynamic WebPages through this we can get inputs and process such inputs and give the outputs


79. JSP Declaratives

By: aathishankaran : 2007-02-12

Description: While programming in jsp we have to know about the declaratives of jsp. Here the declaratives is explained for jsp files. For the beginners they should know how to declare the variables in jsp program. In this article its explained


80. Server Side Programming using JSP

By: aathishankaran : 2007-02-10

Description: A request in server-side processing refers to the transaction between a browser and the server. When someone clicks or enters a URL, the browser sends a request to the server for that URL, and shows the data returned. As a part of this request, various data is available, including the file the browser wants from the server, and if the request is coming from pressing a SUBMIT button, the information the user has entered in the form fields.