📄 send.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@ include file="../hear/hear.jsp"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>发送公文</title>
<link href="../css/work.css" rel="stylesheet" type="text/css" />
<script src="../js/oa.js" language="javascript"></script>
<style type="text/css">
<!--
.style1 {
font-size: 16px;
color: #000000;
font-weight: bold;
}
.style2 {
color: #003366;
font-weight: bold;
}
.style3 {
color: #0060BF;
}
-->
</style>
</head>
<body bgcolor="#ECF1FF">
<table width="668" height="25" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="77%" height="23" colspan="6" align="center" background="../image/zs.gif" class="style1">发送公文</td>
</tr>
</table>
<table width="668" height="242" align="center" cellpadding="0" cellspacing="0">
<form action="save" method="post" name="form1" id="form1" enctype="multipart/form-data" onsubmit="return bumfs()">
<%
Collection coll=(Collection)request.getAttribute("msg");
if(coll==null){
out.print("您的网页已过期请重新登录");
}else{
Iterator it=coll.iterator();
if(it.hasNext()){
Bumf bumf=(Bumf)it.next();
%>
<tr>
<td width="317" align="left" bgcolor="#FFFFFF" >
<div align="right"> </div></td>
<td width="349" height="30" align="left" bgcolor="#FFFFFF" ><input name="bumfid" type="hidden" value="<%=bumf.getId()%>" /> <span class="style2">公文第[<%=bumf.getId()%>]字号 </span> <div align="center"> </div></td>
</tr>
<tr>
<td height="27" bgcolor="#FFFFFF"><div align="center" class="style3">标 题:</div></td>
<td bgcolor="#FFFFFF">
<input name="title" type="text" value="<%=bumf.getTitle()%>" size="15" />
</td>
</tr>
<tr>
<td height="26" bgcolor="#FFFFFF"><div align="center" class="style3">接收人序号:</div></td>
<td bgcolor="#FFFFFF">
<input name="emid" type="text" value="<%=bumf.getAccepter()%>" size="15" />
</td>
</tr>
<tr>
<td height="34" bgcolor="#FFFFFF"><div align="center" class="style3">附 件:</div></td>
<td bgcolor="#FFFFFF">
<input name="file" type="file" value="<%=bumf.getAffix()%>" size="15"/>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"><div align="center" class="style3">内 容:</div></td>
<td height="81" colspan="5" valign="top" bgcolor="#FFFFFF">
<textarea name="bumf" cols="35" rows="5"><%=bumf.getContent()%></textarea>
</td>
</tr>
<tr>
<td height="42" colspan="5" align="center" bgcolor="#FFFFFF" >
<div align="center">
<input type="submit" name="Submit" value="现在发送" />
<input type="submit" name="Submit" value="暂时保存" />
</div> </tr>
<%
}
}
request.removeAttribute("msg");
%>
</form>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -