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

📄 push.jsp.bak

📁 本服务条款内容一旦发生变动,乙方将会在本网站www.smspush.cn 的重要页面上提示修改内容。本服务条款的变更自上述页面发布之日起第三(3)日生效。甲方应定期查阅本服务条款及相关页面发布的修改内
💻 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 + -