?? transcript.jsp
字號:
<%@ page contentType="text/html; charset=UTF-8" %><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %><h3>Transcript for ${student.firstName} ${student.lastName}</h3> <table style="font-size:10pt;" width="600" border="1" cellspacing="1" cellpadding="1"> <tr bgcolor="#999999"> <td>Course ID</td> <td>Name</td> <td>Instructor</td> <td>Start</td> <td>End</td> </tr> <c:forEach var="course" items="${student.courses}"> <tr> <td> <a href="displayCourse.htm?id=${course.id}"> <fmt:formatNumber value="${course.id}" pattern="000000"/> </a> </td> <td>${course.name}</td> <td>${course.instructor.lastName}</td> <td><fmt:formatDate value="${course.startDate}" type="date" dateStyle="full"/></td> <td><fmt:formatDate value="${course.endDate}" type="date" dateStyle="full"/></td> </tr> </c:forEach> </table>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -