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

📄 disp.asp

📁 具有计划、任务、通告、公文、员工档案、等网络办公功能
💻 ASP
字号:
<%response.expires=0%>
<%Response.Buffer=true%>
<!-- #include file="../conn_lr.asp"-->
<!-- #include file="../css.asp"-->
<%
oabusyname=request.cookies("oabusyname")
oabusyusername=request.cookies("oabusyusername")
oabusyuserdept=request.cookies("oabusyuserdept")
oabusyuserlevel=request.cookies("oabusyuserlevel")
if oabusyusername="" then 
	response.write("<script language=""javascript"">")
	response.write("window.top.location.href='../../default.asp';")
	response.write("</script>")
	response.end
end if
%>

<html>
<head>
<title>新增会议</title>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<!-- #include file="../inc/css.asp" -->
<%	'定义变量
	dim Number,opFlag,title,image
	on error resume next
	
	'获取输入参数:记录号和操作标志
	Number=request("Number")
	if Number="" then Number="0"
	Number=Cint(Number)
	opFlag=request("opFlag")
	
	'创建记录访问对象
	Set rs = Server.CreateObject("ADODB.Recordset")

	'打开记录源,并定位到输入参数决定的记录号
'	rs.Open "select * from meeting",Session("conn"),1,3
	rs.Open Session("SQL"),Session("conn"),1,3
	rs.move number

	title="显示会议信息"
	image="../images/meeting.gif"

%>

</head>
<body   id=all  >
 <!-- #include file="../inc/title.asp" -->
  <table width="95%" border="0" cellspacing="0" cellpadding="0" align="center">
    <tr>
      <td><a href="<% if opFlag="cmdEdit" then response.write("edit") else 	response.write("disp")%>text.asp?opFlag=<%=opFlag%>&Number=<%=Number%>">会议纪要</a> 
      </td>
    </tr>
  </table>


  
<table cellspacing=1 cellpadding=0 width=95% bgcolor="<%=Session("vtablebordercolor")%>" border=0 class=vtext align="center">
  <tr bgcolor=<%=Session("vtabletitlebackcolor")%>> 
    <td class=p9 align=right width="90" height="30" > 会议的主题: </td>
    <td class=p9 align=left > <%=rs("vtitle")%> </td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> width="90" height="30"> 会议参与人: 
    </td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%>> <%=rs("vattend")%> 
    </td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> width="90" height="30"> 其他参与人: 
    </td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%>> 
      <%=rs("vattendother")%>
    </td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> width="90" height="30"> 会议主持人:</td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%>> 
<%=rs("vcompere")%>
    </td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> width="90" height="30"> 会议发言人:</td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%>> 
<%=rs("vspeaker")%>
    </td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> 
      topmargin="bottom" width="90" height="30"> 会议的时间: </td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%> 
      topmargin="bottom"> 
<%=rs("vtime")%>
</td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> width="90" height="30"> 会议的地点: 
    </td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%>> 
<%=rs("vplace")%>
    </td>
  </tr>
  <tr bgcolor=#dadfd0> 
    <td class=p9 align=right bgcolor=<%=Session("vtabletitlebackcolor")%> width="90" height="70"> 会议的目的: 
    </td>
    <td class=p9 align=left bgcolor=<%=Session("vcolcolor")%>> 
<%=rs("vaim")%>
    </td>
  </tr>

</table>


  <table class=p9 cellspacing=0 cellpadding=0 width=90% border=0 align="center">

    <tr> 
      <td>
		<p align=center> 
		<br> 
         <button class=vinputbutton  style="height=24"  onClick="window.location.href='print.asp?Number=<%=Number%>'"><img src="../images/print.gif" align="absmiddle"> 打印</button>
	 
         <button class=vinputbutton  style="height=24"  onClick=javascript:history.go(-1);><img src="../images/back.gif" align="absmiddle"> 返回</button>
		</p>
		
      </td>
    </tr>

  </table>
<% '关闭记录源
   rs.close
   set rs=nothing
%>   
</body>
</html>

⌨️ 快捷键说明

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