send.jsp
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:2k
- <%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
- <%@ include file="../hear/hear.jsp"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>短消息发送</title>
- <link href="../css/style.css" rel="stylesheet" type="text/css" />
- <script src="../js/oa.js"></script>
- <style type="text/css">
- <!--
- .style1 {
- font-size: 16px;
- font-weight: bold;
- }
- -->
- </style>
- </head>
- <body bgcolor="#FFFFDF">
- <table width="780" height="25" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="72%" height="23" colspan="6" align="center" background="../KCM/zs.gif" class="style1 advise"><strong>发送短消息</strong></td>
- </tr>
- </table>
- <table width="780" height="214" align="center" cellpadding="0" cellspacing="0">
- <form name="form1" id="form1" method="post" action="send" onsubmit="return info()">
- <tr>
- <td width="283" height="32" align="center" bgcolor="#FFFFFF"><span class="column">收信人序号:</span></td>
- <!--单击回复后,自动将发信人的id号生成出来-->
- <td width="495" align="left" bgcolor="#FFFFFF"><input name="acceptid" type="text" value="<%
- String acceptid=(String)request.getParameter("acceptid");
- if(acceptid!=null){
- out.print(acceptid);
- }
- request.removeAttribute("acceptid");
- %>" size="36" /></td>
- </tr>
- <tr>
- <td height="26" align="center" bgcolor="#FFFFFF" class="column">短消息标题:</td>
- <td width="495" align="left" bgcolor="#FFFFFF"><input name="title" type="text" size="36" maxlength="40" /></td>
- </tr>
- <tr>
- <td height="81" align="center" bgcolor="#FFFFFF" class="column">内 容:</td>
- <td align="left" bgcolor="#FFFFFF"><textarea name="content" cols="30" rows="5"></textarea></td>
- </tr>
- <tr>
- <td bgcolor="#FFFFFF"></td>
- <td height="40" colspan="3" align="center" bgcolor="#FFFFFF">
- <div align="left">
- <input type="submit" name="Submit" value="发送" />
-
- <input type="reset" name="myreset" value="取消"/>
- </div></td>
- </tr>
- <tr>
- <td colspan="3" align="center" valign="top">
- <span class="advise">
- <%
- String daymsg=(String)request.getAttribute("msg");
- if(daymsg!=null){
- out.print(daymsg);
- request.removeAttribute("msg");
- }
- %>
- </span> </td>
- </tr>
- </form>
- </table>
- </body>
- </html>