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

📄 retrievemeetingresult.jsp

📁 JSP物业管理系统 一份比较完整的物业管理系统源码。 对于初学者可以有一定的借鉴。
💻 JSP
字号:
<!-- 系统名称:光大花园物业管理系统 -->
<!-- 程序名称:RetrieveMeetingResult.jsp -->
<!-- 程序类型:jsp文件 -->
<!-- 功能简述:查询会议纪要详细信息资料结果页面 -->
<!-- 作    者:韩立锋 -->
<!-- 公    司:长春中联	-->
<!-- 完成时间:2001/08/28 -->
<!-- 修改人  :毕锋 -->
<!-- 修改内容:页面,增加字段 -->
<!-- 修改时间:2001/11/19/29 -->
<html>
<head>
<title>会议纪要信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="/pmsApp/css/wuye.css" type="text/css">
<script language="JavaScript" src="/pmsApp/common/wuye.js"></script>

<%

String currentpage = (String)request.getAttribute("currentpage");
String num = (String)request.getAttribute("num");
Vector meetingnumb = (Vector) request.getAttribute("meetingnumb");
Vector meetingtopic = (Vector) request.getAttribute("meetingtopic");
Vector meetingdate = (Vector) request.getAttribute("meetingdate");
Vector meetingtime = (Vector) request.getAttribute("meetingtime");
Vector meetingaddr = (Vector) request.getAttribute("meetingaddr");
Vector compere = (Vector) request.getAttribute("compere");
Vector meetingmemb = (Vector) request.getAttribute("meetingmemb");
Vector absent = (Vector) request.getAttribute("absent");
Vector meetingagenda = (Vector) request.getAttribute("meetingagenda");
Vector meetingcontent = (Vector) request.getAttribute("meetingcontent");
Vector remark = (Vector) request.getAttribute("remark");

for (int k=0;k<meetingmemb.size();k++) { 
	 String tmp = (String)meetingmemb.elementAt(k);    
	 int index = 0;
	 index=tmp.indexOf("\n");
	 while (index!=-1){
	 tmp = tmp.substring(0,index-1)+"<br>"+tmp.substring(index+1,tmp.length());
	 index=tmp.indexOf("\n");
	 }
	 meetingmemb.set(k,tmp);
}   
for (int k=0;k<absent.size();k++) { 
	 String tmp = (String)absent.elementAt(k);    
	 int index = 0;
	 index=tmp.indexOf("\n");
	 while (index!=-1){
	 tmp = tmp.substring(0,index-1)+"<br>"+tmp.substring(index+1,tmp.length());
	 index=tmp.indexOf("\n");
	 }
	 absent.set(k,tmp);
}

for (int k=0;k<meetingagenda.size();k++) { 
	 String tmp = (String)meetingagenda.elementAt(k);
	 int index = 0;
	 index=tmp.indexOf("\n");
	 while (index!=-1){
	 tmp = tmp.substring(0,index-1)+"<br>"+tmp.substring(index+1,tmp.length());
	 index=tmp.indexOf("\n");
	 }
	 meetingagenda.set(k,tmp);
}   

for (int k=0;k<meetingcontent.size();k++) { 
	 String tmp = (String)meetingcontent.elementAt(k);
	 int index = 0;
	 index=tmp.indexOf("\n");
	 while (index!=-1){
	 tmp = tmp.substring(0,index-1)+"<br>"+tmp.substring(index+1,tmp.length());
	 index=tmp.indexOf("\n");
	 }
	 meetingcontent.set(k,tmp);
}   

for (int k=0;k<remark.size();k++) { 
	 String tmp = (String)remark.elementAt(k);
	 int index = 0;
	 index=tmp.indexOf("\n");
	 while (index!=-1){
	 tmp = tmp.substring(0,index-1)+"<br>"+tmp.substring(index+1,tmp.length());
	 index=tmp.indexOf("\n");
	 }
	 remark.set(k,tmp);
}   

%>
<script language="JavaScript">
<!--
function MM_swapImgRestore() {// v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() {// v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) {// v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() {// v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->

function Del(form2) {
	var bool = true;
    var del2="☆";
	var del ="※";
    document.form2.inputString.value="numb"+del2+"<%=num%>"+del+"currentpage"+del2+"<%=currentpage%>"+del;
    if (bool) {
		if (confirm("您确认要删除该会议纪要资料么?")==true) {
			document.form2.submit();
		}
}	
}
function Mod(form1) {
	document.form1.submit();
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" background="/pmsApp/images/bg2.gif" leftmargin="0" topmargin="0" onLoad="MM_preloadImages('/pmsApp/images/button_back_over.gif')">
<table width="100%" border="0" cellspacing="0" cellpadding="2">
  <tr> 
    <td height="28" background="/pmsApp/images/toolbar2.gif" valign="top"><img src="/pmsApp/images/blank.gif" width="10" height="1"><img src="/pmsApp/images/button_new_gray.gif" width="55" height="20"><a href="javascript:Mod(form1)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image10','','/pmsApp/images/button_modify_over.gif',1)" ><img name="Image10" border="0" src="/pmsApp/images/button_modify.gif" width="55" height="20" alt="修改选定的数据"></a><a href="javascript:Del(form2)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image11','','/pmsApp/images/button_del_over.gif',1)" ><img name="Image11" border="0" src="/pmsApp/images/button_del.gif" width="55" height="20" alt="删除选中的数据"></a><img src="/pmsApp/images/button_split.gif" width="8" height="20"><a href="/pmsApp/personaladmin/RetrieveMeetingByCInput.jsp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image13','','/pmsApp/images/button_query_over.gif',1)"><img name="Image13" border="0" src="/pmsApp/images/button_query.gif" width="55" height="20" alt="条件检索"></a><img src="/pmsApp/images/button_split.gif" width="8" height="20"></td>
  </tr>
</table>
<br>
<table width="215"  border="1"  align="center" bgcolor="#FFFFFF" bordercolorlight="#808080" bordercolordark="#FFFFFF" cellspacing="0" cellpadding="0" height="22">
    <tr>
            
    <td align="center" bgcolor="#eeffee">会议纪要详细信息</td>
          </tr>
        </table> 
        <br>
<table width="98%" border="1"  align="center" bgcolor="#FFFFFF" bordercolorlight="#808080" bordercolordark="#FFFFFF" cellspacing="0" cellpadding="0">
  <tr> 
    <td align="center" height="22" width="16%" bgcolor="#d4d0c8">会议编号</td>
    <td height="22" width="84%"><%=(String)meetingnumb.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" height="22" width="16%" bgcolor="#d4d0c8">会议主题</td>
    <td height="22" width="84%"><%=(String)meetingtopic.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" height="22" width="16%" bgcolor="#d4d0c8">会议日期</td>
    <td height="22" width="84%"><%=(String)meetingdate.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" height="22" width="16%" bgcolor="#d4d0c8">会议时间</td>
    <td height="22" width="84%"><%=(String)meetingtime.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">会议地点</td>
    <td width="84%"><%=(String)meetingaddr.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">主&nbsp;持&nbsp;人</td>
    <td width="84%"><%=(String)compere.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">与&nbsp;会&nbsp;人</td>
    <td width="84%"><%=(String)meetingmemb.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr>
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">缺席人员</td>
    <td width="84%"><%=(String)absent.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">会议议程</td>
    <td width="84%"><%=(String)meetingagenda.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">会议内容</td>
    <td width="84%"><%=(String)meetingcontent.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td align="center" nowrap width="16%" bgcolor="#d4d0c8" height="22">备&nbsp;&nbsp;&nbsp;&nbsp;注</td>
    <td width="84%"><%=(String)remark.elementAt(0)%>&nbsp;</td>
  </tr>
  <tr> 
    <td valign="top" colspan="4" height="2"> 
      <table width="100%" border="1"  align="center" bgcolor="#d4d0c8" bordercolorlight="#808080" bordercolordark="#FFFFFF" cellspacing="0" cellpadding="2">
        <tr> 
          <td align="center" height="2"><a href="javascript:history.back()"><img src="/pmsApp/images/button_back.gif" width="55" height="20" name="Image1" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image1','','/pmsApp/images/button_back_over.gif',1)" border="0"></a></td>
        </tr>
      </table>
    </td>
  </tr>
</table>
    
<form name="form1" method="post" action="/pmsApp/personaladmin/ModifyMeetingInput.jsp">
	<input type="hidden" name="number" value="<%=num%>">
	<input type="hidden" name="meetingnumb" value="<%=(String)meetingnumb.elementAt(0)%>">
	<input type="hidden" name="meetingtopic" value="<%=(String)meetingtopic.elementAt(0)%>">
	<input type="hidden" name="meetingdate" value="<%=(String)meetingdate.elementAt(0)%>">
	<input type="hidden" name="meetingtime" value="<%=(String)meetingtime.elementAt(0)%>">
	<input type="hidden" name="meetingaddr" value="<%=(String)meetingaddr.elementAt(0)%>">
	<input type="hidden" name="compere" value="<%=(String)compere.elementAt(0)%>">
	<input type="hidden" name="meetingmemb" value="<%=(String)meetingmemb.elementAt(0)%>">
	<input type="hidden" name="absent" value="<%=(String)absent.elementAt(0)%>">
	<input type="hidden" name="meetingagenda" value="<%=(String)meetingagenda.elementAt(0)%>">
	<input type="hidden" name="meetingcontent" value="<%=(String)meetingcontent.elementAt(0)%>">
	<input type="hidden" name="remark" value="<%=(String)remark.elementAt(0)%>">
	<input type="hidden" name="currentpage" value="<%=currentpage%>">
</form>
<form name="form2" method="post" action="/pmsApp/servlet/common.PMS">
<input type="hidden" name="txId" id="txId" value="3030">
<input type="hidden" name="inputString" id="inputString">
</form>

  
  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -