📄 readmeetingjl.asp
字号:
<!--#include file="check.asp"-->
<!--#INCLUDE FILE="connect.asp" -->
<html>
<head>
<title>会议记录</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="apply.css" type="text/css">
</head>
<%set rs=server.createobject("adodb.recordset")
if session("type")="admin" then
sql="select * from applymeeting where id="&CLng(request("flowid"))
else
sql="select * from applymeeting where id="&CLng(request("flowid"))&" and (share=1 or attendid like '"&session("uid")&";%' or attendid like '%;"&session("uid")&";%')"
end if
rs.open sql,conn,1,1
if rs.eof then
rs.close
response.redirect "error.htm"
response.end
end if
%>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" oncontextmenu="return false">
<table cellpadding="0" cellspacing="0" width="100%">
<tr >
<td width="100%" valign="top" align="center">
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="50" class="title" align="center"> <img src="images/meetingjl.gif" width="159" height="29"></td>
</tr>
</table>
<table border="0" cellpadding="2" cellspacing="1" width="90%" height="1" bgcolor="#555555">
<tr bgcolor="f0f0f0" >
<td width="23%" height="40">
<div align="center">会 议 名 称:</div>
</td>
<td height="40" valign="middle" width="77%" class="applygz"><%=rs("meetingname")%></td>
</tr>
<tr bgcolor="f0f0f0" >
<td width="23%" height="40" align="center">会 议 时 间: </td>
<td height="40" valign="middle" width="77%" class="applygz">
<%
meetingstart=rs("timestart")
meetingend=rs("timeend")
meetingyear=left(meetingstart,4)
meetingmonth=mid(meetingstart,5,2)
meetingday=mid(meetingstart,7,2)
hourstart=mid(meetingstart,9,2)
minutestart=mid(meetingstart,11,2)
hourend=mid(meetingend,9,2)
minuteend=mid(meetingend,11,2)
%>
<%=meetingyear%>年<%=meetingmonth%>月<%=meetingday%>日 <%=hourstart%>点<%=minutestart%>分到<%=hourend%>点<%=minuteend%>分</td>
</tr>
<tr bgcolor="f0f0f0" >
<td width="23%" height="40">
<div align="center">会 议 地 点:</div>
</td>
<td height="40" valign="middle" width="77%" class="applygz"><%=rs("roomname")%></td>
</tr>
<tr bgcolor="f0f0f0">
<td width="23%" height="40" align="center">参 加 人 员</td>
<td height="40" width="77%" class="applygz">
<%
temp=trim(rs("attendpeople"))
'temp=trim(rs("attendid"))
'if temp<>"" then
' temp=Replace(temp,";","','")
'end if
'qq=""
'if temp<>"" then
'temp="'"&left(temp,len(temp)-2)
'set rr=server.createobject("adodb.recordset")
'sql="select name from userlist where uid in ("&temp&")"
'rr.open sql,conn,1,1
'while not rr.eof
' qq=qq&rr("name")&";"
' rr.movenext
'wend
'rr.close
'set rr=nothing
'end if
response.write temp
%>
</td>
</tr>
<tr bgcolor="f0f0f0">
<td height="50" width="23%" valign="middle" align="center"> 会 议 内 容: </td>
<td height="50" valign="middle" width="77%" class="applygz"><%=rs("bz")%></td>
</tr>
<tr bgcolor="f0f0f0">
<td width="16%" height="35" align="center">会 议 信 息:</td>
<td colspan="2" nowrap height="35" width="84%" class="applygz">
<%
if rs("share")=1 then
response.write "公开"
else
response.write "不公开"
end if
%>
</td>
</tr>
<tr bgcolor="f0f0f0">
<td width="16%" height="35" align="center">申 请 人:</td>
<td colspan="2" nowrap height="35" width="84%" class="applygz">
<%=rs("applyname")%>
</td>
</tr>
<tr bgcolor="f0f0f0">
<td width="16%" height="35" align="center">申 请 时 间:</td>
<td colspan="2" nowrap height="35" width="84%" class="applygz">
<%=rs("applytime")%>
</td>
</tr>
<tr class=line-even bgcolor="f0f0f0">
<td height="50">
<div align="center">审 批 意 见:</div>
</td>
<td height="50" valign="middle" class="applygz"><%=rs("yijian")%></td>
</tr>
<tr class=line-even bgcolor="f0f0f0">
<td height="60">
<div align="center">会 议 记 录:</div>
</td>
<td height="60" valign="middle" class="applygz"><%=rs("hyjl")%></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" height="30" valign="top" align="left">
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="40">
<tr>
<td width="46%" align="right">
<input type="image" name="send22" value=" 打 印 " onClick="window.print();return false;" src="images/printgif.gif" alt="打印">
</td>
<td width="8%"> </td>
<td width="46%">
<input name=backup2 type="image" value=" 关 闭 " onClick="history.go(-1);return false;" src="images/fanhuigif.gif" alt="关闭">
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--#include file="close.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -