empdetails.jsp

来自「JPA最好的」· JSP 代码 · 共 47 行

JSP
47
字号
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"    pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet"  type="text/css" href="css/dwstyles.css"/>
<title>dW Spring 2 Employee Detail Information</title>
</head>
<body>
		<h1>Spring 2 JPA Employee Details</h1>
			<br>
			&nbsp;&nbsp;&nbsp;<table>
			<tr>
			   <th colspan="2">Employee Information</th>
			   
			</tr>
			<tr>
			<td>Employee No.</td><td>${emp.empno}</td>
            </tr>
			<tr>
			<td>Name</td><td>${emp.firstName} ${emp.midInitial}  ${emp.lastName}</td>
            </tr>
            <tr>
			<td>Address</td><td>${emp.addr.number} ${emp.addr.street}</td>
            </tr>
            <tr>
			<td>Phone</td><td>${emp.phoneNumber}</td>
            </tr>
           <tr>
			<td>Salary</td><td>${emp.salary}</td>
            </tr>
           <tr>
			<td>Bonus</td><td>${emp.bonus}</td>
            </tr>
            <tr>
			<td>Commission</td><td>${emp.commission}</td>
            </tr>
            
            
            

 </table>
<br/>
<br/>
<a href="home.cgi">Go back to employee list</a></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?