?? detaile.jsp
字號:
<%@ page language="java" pageEncoding="GB18030"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<jsp:useBean id="meet" class="com.meet.bean.meeting" scope="page"></jsp:useBean>
<%@page import="java.sql.*" %>
<html>
<head>
<title>會議管理系統(tǒng)---$--J2EE</title>
</head>
<body background="../file/bg.jpg">
<%@include file="top.jsp" %>
<center>
<TABLE border=0 cellPadding=1 cellSpacing=1 width=760 align="center">
<TBODY>
<tr>
<td align="left" width="30%"><font size="3">當(dāng)前位置:-->修改已有會議內(nèi)容</font></td>
<td align="left" width="50%"> <marquee direction="left" scrollamount="2" scrolldelay="90" width="400"> <script language="javascript" src="file/hello.js"></script></marquee></td>
<td align="left" width=20%> </td>
</tr>
<TR bgColor=#3399ff>
<TD height=1 colspan="6"></TD>
</TR>
<tr>
<td height=10 colspan="6"></td>
</tr>
</TBODY>
<table>
<tr><td>
<html:form action="/detaile">
<br>
<% String ID=request.getParameter("id").toString();
int meet_id=Integer.valueOf(ID).intValue();
session.putValue("ID",ID);
String str="select * from base where meet_ID="+meet_id+"";
String str1="select * from taile where meet_ID="+meet_id+"";
ResultSet rs=meet.executeFind(str);
ResultSet rs1=meet.executeFind(str1);
while(rs.next())
{ %>
<span><font size="5">基本信息:</font></span>
<table width="550" height="122" border="3" align="center"bordercolorlight="#3399FF" bordercolordark="#FFFFFF" background="../file/bg.jpg">
<tr>
<td width="30%"><span class="STYLE4">會議ID :</td>
<td ><html:text property="meet_ID" value='<%=ID%>'/></td>
<td ><html:errors property="meet_ID"/></td>
</tr>
<tr>
<td ><span class="STYLE9">會議主題:</span></td>
<td ><html:text property="title" size="30" value='<%=rs.getString("meet_title")%>'></html:text></td>
</tr>
<tr>
<td><span class="STYLE9">會議類型:</span></td>
<td ><html:select property="type" value='<%=rs.getString("meet_type")%>'>
<html:option value="周會" />
<html:option value="報告會" />
<html:option value="考務(wù)會" />
</html:select></td>
</tr>
<tr>
<td ><span class="STYLE9">會議狀態(tài):</span></td>
<td ><html:select property="state" value='<%=rs.getString("meet_state")%>'>
<html:option value="進(jìn)行中" />
<html:option value="準(zhǔn)備中" />
<html:option value="已結(jié)束" />
</html:select></td>
</tr>
</table>
<%
}
while(rs1.next())
{ String meettime=rs1.getDate("meettime").toString();
String add=rs1.getString("address").toString();%>
<br><br><br>
<span><font size="5">具體情況:</font></span>
<table width="550" height="230" border="3" bordercolorlight="#3399FF" bordercolordark="#FFFFFF" >
<tr>
<td width="30%"><span class="STYLE4">會議時間:</span></td>
<td><html:text property="meettime" value='<%=meettime%>'/></td>
<td><html:errors property="meet_ID"/></td>
</tr>
<tr>
<td><span class="STYLE4">參加者:</span></td>
<td><html:text property="people" value='<%=rs1.getString("people")%>'/></td>
<td><html:errors property="meet_ID"/></td>
</tr>
<tr>
<td><span class="STYLE4">會議地點(diǎn):</span></td>
<td><html:text property="address" value='<%=add%>'/></td>
<td><html:errors property="meet_ID"/></td>
</tr>
<tr>
<td><span class="STYLE4"> 主要內(nèi)容:</span></td>
<td><html:text property="statement" maxlength="1000" value='<%=rs1.getString("statement")%>'/></td>
<td><html:errors property="meet_ID"/></td>
</tr>
<tr>
<td><span class="STYLE4">討論結(jié)果:</span></td>
<td><html:text property="result" value='<%=rs1.getString("result_fina")%>'/></td>
<td><html:errors property="meet_ID"/></td>
</tr>
<tr>
<td><span class="STYLE4">領(lǐng)導(dǎo)者:</span></td>
<td><html:text property="leader" value='<%=rs1.getString("leader")%>'/></td>
<td><html:errors property="meet_ID"/></td>
</tr>
</table>
<%} %>
<table>
<tr>
<td><html:submit property='"update"'>更新</html:submit></td>
<td><a href="<%=request.getContextPath()%>/delete.do?id=<%=meet_id%>">刪除</a></td>
</tr>
</table>
</html:form>
</td></tr></table>
</center>
<%@include file="foot.jsp" %>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -