📄 meetingjl.asp
字号:
<!--#include file="check.asp"-->
<!--#include file="checkpower.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>
<%
flowid=CLng(request("flowid"))
set rs=server.createobject("adodb.recordset")
if request.servervariables("Request_Method")="POST" then
sql="update applymeeting set hyjl='"&request("hyjl")&"',share="&request("radio")&" where id="&flowid
conn.execute(sql)
response.write "<script>alert('添加会议记录成功!')</script>"
end if
sql="select * from applymeeting where id="&flowid
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">
<form name="form" method="post" action="meetingjl.asp">
<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">
<input type="radio" name="radio" value="0" <%if rs("share")<>1 then response.write "checked"%>>
不公开
<input type="radio" name="radio" value="1" <%if rs("share")=1 then response.write "checked"%>>
公开 注:如信息公开非会议成员可查看到会议的信息 </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="80">
<div align="center">会 议 记 录:</div>
</td>
<td height="80" valign="middle" class="applygz"><textarea name="hyjl" style="width:80%;height:100%;"><%=rs("hyjl")%></textarea></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 name="send22" type="image" onClick="return sendmsg();" value="确定" src="images/okgif.gif" alt="确定" width="71" height="19">
</td>
<td width="8%"> </td>
<td width="46%">
<input name=backup2 type="image" value=" 返回 " onClick="goback();return false;" src="images/fanhuigif.gif" alt="返回">
<input name="flowid" type="hidden" id="flowid" value="<%=flowid%>">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<script language="javascript">
function sendmsg(){
if(document.form.hyjl.value==""){
alert("会议记录内容为空!");
document.form.hyjl.focus();
return false;
}
}
function goback(){
document.location="meetinglist.asp"
}
</script>
<!--#include file="close.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -