empleadoDetail.jsp 351 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
    <title>View Books</title>
</head>
<body>
<h1>Id ${empleado.getId()}</h1>
<h3>Nombre: ${empleado.getNombre()}</h3>
<h3>Salario: ${empleado.salario}$</h3>
<h3>Cargo: ${empleado.cargo}</h3>
</body>
</html>