?? meetshow.jsp
字號:
<%@ page contentType="text/html; charset=gb2312"%>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ taglib uri="struts-bean" prefix="bean" %>
<%@ taglib uri="struts-logic" prefix="logic" %>
<html>
<head>
<title>顯示所有會議記錄</title>
</head>
<body>
<center>
<table border="0" width="600" height="44" cellspacing="0" cellpadding="0" rules="none" style="margin-top:1pt">
<tr>
<td width=65%"> </td>
<td align="center"><img src="image/ModuleA/add_link.gif"> <html:link page="/add.do" module="/ModuleA">添加會議</html:link></td>
<td align="center"><img src="image/ModuleA/search_link.gif"> <html:link page="/searchy.do" module="/ModuleA">查詢會議</html:link></td>
</tr>
</table>
<logic:notPresent name="meetlist">
<table border="1" width="600" height="200" cellspacing="0" cellpadding="0" bordercolor="lightgrey" bordercolorlight="lightgrey" bordercolordark="white" rules="none" bgcolor="#D0EEF9">
<tr><td align="center"><li>沒有記錄顯示!</li></td></tr>
</table>
</logic:notPresent>
<logic:present name="meetlist">
<logic:empty name="meetlist">
<table border="1" width="600" height="200" cellspacing="0" cellpadding="0" bordercolor="lightgrey" bordercolorlight="lightgrey" bordercolordark="white" rules="none">
<tr><td align="center"><li>沒有記錄顯示!</li></td></tr>
</table>
</logic:empty>
<logic:notEmpty name="meetlist">
<logic:iterate id="meetsingle" name="meetlist">
<table border="1" width="600" height="200" bordercolor="#D3DDE7" bordercolorlight="#D3DDE7" bordercolordark="white" cellspacing="0" cellpadding="5" rules="none">
<tr bgcolor="#DCEAF5" height="20">
<td style="text-indent:10px" width="30%" colspan="2">會議編號:</td>
<td><bean:write name="meetsingle" property="id"/></td>
</tr>
<tr>
<td align="center" colspan="2">會議主題:</td>
<td><bean:write name="meetsingle" property="meetSubject"/></td>
</tr>
<tr>
<td align="center" colspan="2">主 持 人:</td>
<td><bean:write name="meetsingle" property="meetSpeaker"/></td>
</tr>
<tr>
<td align="center" colspan="2">出 席 人:</td>
<td><bean:write name="meetsingle" property="meetListener"/></td>
</tr>
<tr>
<td align="center" colspan="2">會議時間:</td>
<td><bean:write name="meetsingle" property="meetTime"/></td>
</tr>
<tr>
<td align="center" colspan="2">會議地點:</td>
<td><bean:write name="meetsingle" property="meetAddress"/></td>
</tr>
<tr>
<td align="center" colspan="2">會議內容:</td>
<td rowspan="2"><textarea rows="4" cols="52" readonly style="border:1 solid;border-color:lightgrey;background-color:#F0F0F0"><bean:write name="meetsingle" property="meetContent"/></textarea></td>
</tr>
<tr>
<td align="right"><html:link page="/modify.do" module="/ModuleA">[修改]</html:link></td>
<td align="left"><html:link page="/delete.do" module="/ModuleA">[刪除]</html:link></td>
</tr>
<tr height="15" bgcolor="#D0EEF9"><td colspan="3"></td></tr>
</table>
</logic:iterate>
<table border="0" width="600" height="50" cellspacing="0" cellpadding="0" bordercolor="lightgrey" bordercolorlight="lightgrey" bordercolordark="white" rules="none">
<tr>
<td align="center" width="60%"><bean:write name="pageinfo" filter="false"/></td>
<td align="center"><bean:write name="pagelink" filter="false"/></td>
</tr>
</table>
</logic:notEmpty>
</logic:present>
</center>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -