📄 listclasses.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" pageEncoding="gb2312" isELIgnored="false"%>
<%@ page import="tarena.util.*,java.util.*,tarena.pojo.*"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<jsp:useBean id="allClasses" class="java.util.TreeMap" scope="request"/>
<%pageContext.setAttribute("types", ContextUtil.TYPES);%>
<html>
<head>
<title>杰普课程调查系统</title>
<meta name="generator" content="TonyDeng">
<meta name="keywords" content="杰普课程调查系统">
<meta name="description" content="明天会更好!">
<link href="../inc_css/tarena.css" rel="stylesheet" type="text/css">
<LINK href="../inc_css/support.css" type=text/css rel=stylesheet>
</head>
<body leftmargin="0" topmargin="0" marginwidth="00" height="100%">
<br>
<table border="0" align="center" width="98%" cellpadding="1"
cellspacing="1">
<tr>
<td colspan="3"><html:errors /></td>
</tr>
<tr bgcolor="#cccccc">
<td align="center"><b>序号</b></td>
<td align="center"><b>名称</b></td>
<td align="center"><b>类型</b></td>
<td width="40"> </td>
</tr>
<logic:iterate id="classesForm" collection="<%=allClasses.values()%>">
<html:form action="/admin/manageClasses.do">
<html:hidden name="classesForm" property="id"/>
<html:hidden name="classesForm" property="name"/>
<html:hidden name="classesForm" property="types"/>
<tr>
<td align="center"><bean:write name="classesForm" property="id"/></td>
<td align="center"><bean:write name="classesForm" property="name"/></td>
<td align="center"><bean:write name="classesForm" property="types"/></td>
<td align="center">
<!--<html:submit property="manage"><bean:message key="info.button.update"/></html:submit>-->
<html:submit property="manage"><bean:message key="info.button.delete"/></html:submit>
</td>
</tr>
</html:form>
</logic:iterate>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -