⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vote_list.jsp

📁 hibernate项目开发宝典该书籍的 源码
💻 JSP
字号:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="vote" uri="http://hxex.cn/vote" %>
<%@page contentType="text/html;charset=gb2312" %>

<html>
<head>
	<title>投票管理系统</title>
</head>
<body>
<center>
	<h1>投票管理系统</h1>
	<table border="1">
		<tr>
			<td colspan="5"><font color="red">${msg}</font></td>
		</tr>
		<tr>
			<td align="center">投票标识</td>
			<td align="center">投票名称</td>
			<td align="center">投票类型</td>
			<td align="center">图形类型</td>
			<td align="center">操作类型</td>
		</tr>
		<c:forEach var="vote" items="${votes}">
		<tr>
			<td>${vote.name}</td>
			<td>${vote.title}</td>
			<td>${vote:votetype( vote.votetype )}</td>
			<td>${vote:pictype( vote.pictype )}</td>
			<td align="center">
				<a href="vote_update.jsp?id=${vote.id}">修改投票</a>&nbsp;&nbsp;
				<a href="vote_delete.jsp?id=${vote.id}">删除投票</a>&nbsp;&nbsp;
				<a href="voteitem_updatein.jsp?voteid=${vote.id}">修改选项</a>
			</td>
		</tr>
		</c:forEach>
	</table>
	<p>
	<a href="vote_add.jsp">发布投票</a>
	<p>
	<img src="img/manager.gif" width="300">
</center>
</body>	
</html>

⌨️ 快捷键说明

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