?? push.jsp.bak
字號:
<!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 + -