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

📄 userlist.jsp

📁 应用泛型以及反射编写的单表操作框架
💻 JSP
字号:
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/commons/taglibs.jsp" %>
<html>
<head>
	<%@ include file="/commons/meta.jsp" %>
	<link href="${ctx}/widgets/extremecomponents/extremecomponents.css" type="text/css" rel="stylesheet">
	<title>userList</title>
</head>

<body>
<div id="page">
	<div id="header">
		<h1 align="center">用户信息</h1>
	</div>

	<div id="content">
		
		<%@ include file="/commons/messages.jsp" %>
		<ec:table items="users" var="user"
				  action="${ctx}/user.do">
			<ec:exportXls fileName="UserList.xls" tooltip="Export Excel"/>
			<ec:exportPdf fileName="userList.pdf" tooltip="Export PDF" headerColor="blue" headerBackgroundColor="red" headerTitle="User Information"/>
			<ec:row>
				<ec:column property="rowcount" cell="rowCount" sortable="false" title="No." width="60"/>
				<ec:column property="id" title="ID" width="60"/>
				<ec:column property="name" title="Name" width="120"/>
				<ec:column property="email" title="Email" width="120"/>
				<ec:column property="descn" title="Description" viewsDenied="html"/>
				<ec:column property="null" title="Edit" width="40" sortable="false" viewsAllowed="html">
					<a href="user.do?method=edit&id=${user.id}">Edit</a>
				</ec:column>
				<ec:column property="null" title="Remove" width="40" sortable="false" viewsAllowed="html">
					<a href="user.do?method=delete&id=${user.id}">Delete</a>
				</ec:column>
			</ec:row>
		</ec:table>
	</div>

	<div>
		<button id="addbtn" onclick="location.href='user.do?method=create'">Add</button>
	</div>
</div>

</body>
</html>

⌨️ 快捷键说明

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