Source Code : JSP without beans
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
JSP without beans
//createPerson.jsp
<html>
<head><title>Create Person</title></head>
<body>
<h1>Enter your details</h1>
<form action="displayDetails.jsp" method="post">
<table>
<tr><td>First name:</td>
<td><input type="text" name="firstName" /></td>
</tr>
<tr><td>Last name:</td>
<td><input type="text" name="lastName" /></td>
</tr>
<tr><td>Age:</td>
<td><input type="text" name="age" /></td>
</tr>
</table>
<input type="submit" value="Submit details" />
</form>
</body>
</html>
// displayDetails.jsp
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<html>
<head><title>Display details</title></head>
<body>
<h1>Your details (or, the details you entered!)</h1>
<table>
<tr><td>First name</td><td><c:out value="${param.firstName}" /></td></tr>
<tr><td>Last name</td> <td><c:out value="${param.lastName}" /></td></tr>
<tr><td>Age</td> <td><c:out value="${param.age}" /></td></tr>
</table>
</body>
</html>
Thank with us