list.jsp

来自「信息发布 发布系统 动态的菜单 和 信息统计」· JSP 代码 · 共 36 行

JSP
36
字号
<%@ page language="java" pageEncoding="GBK"%>
<%@ page import="com.xuntian.material.taglib.SuperTableTag" %>
<%@ include file="/jsp/_plugin/taglib.jsp"%>

<%
		StringBuffer headers = new StringBuffer();
		headers.append("栏目名称");
%>

<html>
<head>
<title>项目列表</title>
<xt:style />
<xt:meta />
<xt:js />
</head>

<body>
<div align="center">
<div class="page_title" align="left">
&nbsp&nbsp栏目管理 ->
栏目列表
</div>
<xt:form action="/BaseInfoItem">
	<div class="page_button">
		&nbsp; <xt:submitButton text="添加栏目" actionMethod="add"/>
		&nbsp; <xt:submitButton text="删除栏目" actionMethod="delete" isMultiSelect="itemID" confirmText="确认删除这些项目?"/>
	</div>
	<xt:superTable name="itemList" headers="<%=headers.toString()%>" width="600" height="300"
	               data="baseinfo.item.data" checkbox="itemID"
	               edit="/BaseInfoItem.do?method=edit&itemID="/>
</xt:form>
</div>
</body>
</html>

⌨️ 快捷键说明

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