vote_result.jsp
来自「hibernate项目开发宝典该书籍的 源码」· JSP 代码 · 共 33 行
JSP
33 行
<%@page contentType="text/html;charset=gb2312" %>
<%@ taglib prefix="vote" uri="http://hxex.cn/vote" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>投票结果</title>
</head>
<body>
<center>
<h1>${vote.title}</h1>
<h3>投票结果</h3>
<img src="chart?id=${vote.id}">
<table width="300" border="1">
<tr>
<td align="center">选项</td>
<td align="center">结果</td>
</tr>
<c:forEach var="voteitem" items="${vote.voteitems}">
<tr>
<td>${voteitem.title}</td>
<td>${voteitem.votenum}</td>
</tr>
</c:forEach>
<tr>
<td colspan="2" align="center">
<a href="index.jsp">返回</a>
</td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?