Sunday, May 29, 2016

Addition of Three Numbers Using JSTL

A simple program that I wrote that will add the sum of the three numbers using JSTL or JSP Standard Tag Library. The code is very easy to understand and learn from it.

 Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360



Sample Program Output


Program Listing

index.jsp


<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>
body 
{
font-family:arial;
font-weight:bold;
size:12px;
color:blue;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Addition of Three Numbers in JSTL</title>
</head>
<body>
<h3> Addition of Three Numbers in JSTL</h3>
The sum of 10, 20 and 30 is  <c:out value="${10 + 20+ 30}" />.
</body>
</html>

No comments:

Post a Comment