The mail-list example below demonstrates how to use simple HTML forms with JSP.
This example takes firstname, last name and email from user and display it as an output.
The below example demonstrates how to access class variable in java.
The below example creates an object for Class AccessingClassVariables01 and accesses the class field member i.e fullName through Run It Now!
The below example demonstrates how to compare two objects of same class in java.
The below example creates two objects of class Employee i.e emp1 & emp2 and compares the objects.If the objects are eq Run It Now!
The online CD shopping cart example below demonstrates how to create a shopping cart in JSP.
The example allows the user to add items to a shopping cart, and then view
the contents of the cart.
Run It Now!
The JSP Portal example below demonstrates how to build website portal using JSP and Servlets.
The example allows the user to select a portal as input and get its details as output.
Run It Now!
The Hello World example below demonstrates how to use JSP to print hello world message.
This example prints a Hello world message along with current day,date and time.
The Hello User example below demonstrates how to pass parameters in JSP.
This example accepts a name from user and displays the output as "Hello user-name".
The mail-list example below demonstrates how to use simple HTML forms with JSP Expressions.
This example takes firstname, last name and email from user and display it as an output.
The registration example below demonstrates how to use HTML with JSP to create a registration page.
This example takes user information from user and computes the billing information to show as output
The EL function example below demonstrates how to use El functions in JSP.
This example uses abs() and round() to find out the absolute and rounded value of given values.