📄 custommanage.jsp
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="/aqu" prefix="aqu"%>
<c:set value="${aqu:getUrl()}/admin/login.jsp" var="url"/>
<c:if test="${sessionScope.admin==null||sessionScope.admin!='yes'}">
<c:redirect url="${url}"/>
</c:if>
<html>
<head>
<META http-equiv=Content-Type content="text/html; charset=gb2312"><LINK
href="/css/Admin_Style.css" type=text/css rel=stylesheet>
<META content="MSHTML 6.00.2800.1522" name=GENERATOR></HEAD>
<title>无标题文档</title>
</head>
<body>
<BR>
<table class=border cellspacing=1 cellpadding=0 width="100%" align=center
border=0>
<tbody>
<tr class=title height=22>
<td align=middle width=29><strong>ID</strong></td>
<td width="63" align=middle><strong>标签名称</strong></td>
<td align=middle width=63><strong>所属栏目</strong></td>
<td align=middle width=68><strong>动态/静态</strong></td>
<td align=middle width=67><strong>热门/最新</strong></td>
<td align=middle width=59><strong>显示行数</strong></td>
<td align=middle width=54><strong>每行字数</strong></td>
<td align=middle width=63><strong>操作选项</strong></td>
<td align=middle width=324><strong>备注说明</strong></td>
</tr>
${aqu:initMDDCustom()} <c:forEach begin="0" end="${aqu:getCustomCount()}"> <c:if test="${aqu:customNext()}">
<tr class=tdbg onMouseOver="this.style.backgroundColor='#BFDFFF'"
onMouseOut="this.style.backgroundColor=''">
<td align=middle width=29><c:out value="${aqu:getCustomInt('id')}"/></td>
<td><b><c:out value="${aqu:getCustomString('LableName')}"/></b></td>
<c:if test="${aqu:getCustomInt('WithClass')!=0}">
<td align=middle width=63><c:set value="class where id=${aqu:getCustomInt('WithClass')}" var="classId" /><c:out value="${aqu:getParentName(classId)}"/></td>
</c:if>
<c:if test="${aqu:getCustomInt('WithClass')==0}">
<td align=middle width=63>所有栏目</td>
</c:if>
<td align=left width=68><c:set value="${aqu:getCustomBoolean('staticed')}" var="staticed"/><c:if test="${staticed=='1'}">静态</c:if><c:if test="${staticed!='1'}">动态</c:if></td>
<td align=left width=67><c:set value="${aqu:getCustomBoolean('IsHot')}" var="isHot"/><c:if test="${isHot=='1'}">热门</c:if><c:if test="${isHot!='1'}">最新</c:if></td>
<td align=left width=59><c:out value="${aqu:getCustomInt('BarNumber')}"/></td>
<td align=left width=54><c:out value="${aqu:getCustomInt('letterNumber')}"/></td>
<td align=left width=63><a href="MDDCustom.jsp?action=modify&id=${aqu:getCustomInt('Id')}">修改</a> <a href="MDDCustom.jsp?action=del&id=${aqu:getCustomInt('Id')}">删除</a></td>
<td align=left width=324><c:out value="${aqu:getCustomString('remark')}"/></td>
</tr>
</c:if> </c:forEach>
${aqu:customClose()}
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -