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

📄 listterminalgroup.jsp

📁 本服务条款内容一旦发生变动,乙方将会在本网站www.smspush.cn 的重要页面上提示修改内容。本服务条款的变更自上述页面发布之日起第三(3)日生效。甲方应定期查阅本服务条款及相关页面发布的修改内
💻 JSP
字号:
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@page import="java.util.*"%>
<%@page import="com.we2less.jwap.permission.*"%>
  <%@page import="com.we2less.jwap.terminal.*"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>终端用户组列表</title>
<style type="text/css">
<!--
.style1 {	font-size: medium;
	font-weight: bold;
}
-->
</style>
</head>

<body>
<form name="form1" id="form1" method="post" action="/listTerminalAction.do">
  <table width="780" border="1" align="center" cellpadding="0" cellspacing="0">
    <caption>
    <span class="style1"> 终端用户组列表 </span>
    </caption>
    <tr>
      <th scope="col">编号</th>
      <th scope="col">名称</th>
      <th scope="col">备注</th>
      <th scope="col">操作</th>
    </tr>
	<%
	java.util.List groups = null;
	if(request.getAttribute("groups") != null)
		groups = (java.util.List)request.getAttribute("groups");
	for(int i = 0;groups != null && i < groups.size(); i++){
	TerminalGroup group = (TerminalGroup)groups.get(i);
	%>
    <tr>

      <td><%=group.getGroupId()%></td>
      <td><%=group.getGroupName()%></td>
      <td><%=group.getNote()%></td>
      <td><div align="center"><a href="/setGroupTerminalAction.do?action=set&groupId=<%=group.getGroupId()%>">修改</a>&nbsp;&nbsp;<a href="/deleteGroupAction.do?groupId=<%=group.getGroupId()%>">删除</a></div></td>
   </tr>
	<%
	}
	%>
    <!--tr>
      <td colspan="9"><div align="right">
          <h3>首页 上一页 下一页 尾页 到
              <input name="textfield" type="text" size="3" />
            <input type="submit" name="Submit" value="Go" />
          </h3>
      </div></td>
    </tr-->
  </table>
</form>
<h2 id="pageName">&nbsp;</h2>
</body>
</html>

⌨️ 快捷键说明

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