📄 push.jsp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.util.*"%>
<%@page import="com.we2less.jwap.terminal.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>发送Push信息</title>
<style type="text/css">
<!--
.style1 {
font-size: 24px;
font-weight: bold;
}
-->
</style>
<%
List groups = null;
if(request.getAttribute("groups") != null){
groups = (List)request.getAttribute("groups");
}
%>
</head>
<body>
<div align="center" class="style1">发送Push信息
</div>
<form action="/pushAction.do" name="form1" method="post">
<table width="700" border="1" cellpadding="0" cellspacing="0" id="table">
<!--tr>
<th scope="row">号码录入方式</th>
<td><select name="phoneNumInputType" style="width:160" onchange="changed()">
<option value="0">已定义终端用户组</option>
<option value="1" selected>输入号码</option>
</select></td>
</tr-->
<tr>
<th width="282" scope="row">选择要发送的终端组</th>
<td width="412">
<select name="groupId">
<%
if(groups != null && !groups.isEmpty()){
for(int i = 0; i < groups.size(); i++){
TerminalGroup group = (TerminalGroup)groups.get(i);
%>
<option value="<%=group.getGroupId()%>"
<%=(request.getAttribute("groupId")!=null &&group.getGroupId().toString().equals(request.getAttribute("groupId").toString())?"selected":"")%>><%=group.getGroupName()%></option>
<%}}%>
</select>
<!--br/>
<textarea name="phoneNum" cols="24" rows="8"></textarea-->
</td>
</tr>
<tr>
<th scope="row">WAP信息URL</th>
<td><input type="text" name="url" value="www.jx139.com">
</td>
</tr>
<tr>
<th scope="row">显示信息</th>
<td><input type="text" name="title" value="登录掌上江西畅游WAP世界">
</td>
</tr>
</table>
<p align="center">
<input type="submit" name="Submit3" value="提交">
<input type="reset" name="Submit4" value="重置">
</p>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -