OneCompiler

JSP Page (displayData.jsp)

1724

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Customer Details</title> </head> <body> <h2>Customer Details</h2> <table border="1"> <tr> <th>SSN ID</th> <td>${ssnId}</td> </tr> <tr> <th>Name</th> <td>${name}</td> </tr> <tr> <th>Email</th> <td>${email}</td> </tr> <tr> <th>Address</th> <td>${address}</td> </tr> <tr> <th>Contact Number</th> <td>${contactNumber}</td> </tr> <tr> <th>Aadhar Number</th> <td>${aadharNumber}</td> </tr> <tr> <th>PAN Number</th> <td>${panNumber}</td> </tr> <tr> <th>Account Number</th> <td>${accountNumber}</td> </tr> <tr> <th>Account Balance</th> <td>${accountBalance}</td> </tr> </table> </body> </html>