📄 editback.jsp
字号:
<%@page language="java" contentType="text/html;charset=GBK"%>
<%@page import="java.util.*,java.text.*,oa.main.DealString"%>
<jsp:useBean id="pb" class="oa.main.ParentBean" scope="page"/>
<%
try{
request.setCharacterEncoding("GBK");
String uid = (String)session.getAttribute("zgbh");
if(uid==null)
{
response.sendRedirect("../../session_oa.htm");
return;
}
DealString ds = new DealString();
if (pb.getConn() == null){
%>
数据库无法响应,请<a href="javascript:window.history.back(-1);">返回</a>重试
<%out.close();
}
String str_id = ds.toString(request.getParameter("id"));
String str_backid = ds.toString(request.getParameter("backid"));
String str_receiver = ds.toString(request.getParameter("receiver"));
String str_title = ds.toString(request.getParameter("title"));
String str_REBACK = pb.toName("HG2_MEET_SUMMARY_MEN","ID","REBACK",str_backid);
String strName = pb.toName("ZZ_ZGB","ZGBH","XM",str_receiver);
String strWORD = pb.toName("HG2_MEET_SUMMARY","ID","WORD",str_id);
%>
<HTML>
<head><title>会议通知</title>
<link href="../../css/person.css" type=text/css rel=stylesheet>
<script language="javascript" src="../scripts/department.js"></script>
<script src="Popup.js"></script>
</head>
<BODY leftMargin=0 topMargin=0 >
<br> <font color="#505050" size=2>当前位置:会议管理>><a href="list.jsp">督办落实</a></font>
<div align=center>
<font color="#666666" size=3><b>填写反馈意见<b></font>
</div>
<br>
<form name=form1 action="" method=post>
<table border="1" width="95%" align=center cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#A5BEE0" >
<tr bgcolor="#E0E0E0" height=25>
<td width="15%" align=right>纪要标题:</td>
<td width="85%" > <%=str_title%></a></td>
</tr>
<tr bgcolor="#ffffff" height=25>
<td width="15%" align=right>姓名:</td>
<td width="85%" > <%=strName%></td>
</tr>
<tr bgcolor="#E0E0E0" height=25>
<td width="15%" align=right>反馈意见:</td>
<td width="85%" ><br> <textarea name="txt_backidea" style="color: #000000; background-color: #FFFFFF;font-family:宋体; font-size: 12px;BORDER-RIGHT: 1px solid #A5BEE0; BORDER-TOP: 1px solid #A5BEE0; BORDER-LEFT: 1px solid #A5BEE0; BORDER-BOTTOM: 1px solid #A5BEE0" rows=10 cols=40><%=str_REBACK%></textarea>(最多200字)<br><br></td>
</tr>
<tr bgcolor="#ffffff" height=25>
<td colspan=2 align=center><input type="button" value="提交" name="baocun" onclick="submitback()" style="background-color: #ffffff;cursor:hand;" style="color: #000000; background-color: #FFFFFF;font-family:宋体; font-size: 12px;BORDER-RIGHT: 1px solid #A5BEE0; BORDER-TOP: 1px solid #A5BEE0; BORDER-LEFT: 1px solid #A5BEE0; BORDER-BOTTOM: 1px solid #A5BEE0"></td>
</tr>
</table>
</form>
</BODY>
</HTML>
<script language=javascript>
function submitback(){
document.all.form1.action = "servlet.jsp?action=back&id=<%=str_id%>&backid=<%=str_backid%>";
document.all.form1.submit();
}
function muban(){
var windoc = "word/EditDoc.jsp?readonly=true&id=<%=strWORD%>";
var winword = window.open(windoc,"editDOC","height=500,width=750,top=0,left=0,toolbar=no,menubar=no,location=no,resizable=yes,directories=no,status=no,scrollbars=yes,dependent=no");
winword.focus();
}
function onButton_OK(oList){
var strNames="";
var strValues="";
for(var i=0;i<oList.length;i++){
strNames+=oList.options[i].text;
strNames+=",";
strValues+=oList.options[i].value;
strValues+=";";
}
document.all.txt_receiver.value = strValues;
}
function openWns(url,name){
var hWnd=window.open(url,name,'left=100,top=50,width=460,height=490');
hWnd.focus();
}
</script>
<%}finally{
if(pb!=null)
pb.closeConn();
}%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -