mymeeting.asp

来自「会议事务系统」· ASP 代码 · 共 55 行

ASP
55
字号
<!--#include file="meetdb.inc"-->
<%
	dim adoRS1,adoRS2,adoRS3,adoRS4
	set adoRS1 = getMyMeetingRSByBuilder()
	set adoRS2 = getMyMeetingRSByOrganizer()
	set adoRS3 = getMyMeetingRSByPerson()
	set adoRS4 = getMsgRS()	
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript" src="../include/tools.js"></script>
</head>

<body>
<h3 align="center">我所创建的会议</h3>
<%
while not adoRS1.EOF 
response.Write "<a href=""meetinginfo.asp?id=" & adoRS1("id") & """>" & adoRS1("name") & " </a><BR>" & vbCrlf
adoRS1.MoveNext
Wend 
	adoRS1.Close
	set adoRS1 = nothing
%>
<h3 align="center">我需要安排的会议</h3>
<%
while not adoRS2.EOF 
response.Write "<a href=""meetinginfo.asp?id=" & adoRS2("id") & """>" & adoRS2("name") & " </a><BR>" & vbCrlf
adoRS2.MoveNext
Wend 
	adoRS2.Close
	set adoRS2 = nothing
%>
<h3 align="center">我需要参加的会议</h3>
<%
while not adoRS3.EOF 
response.Write "<a href=""meetinginfo.asp?id=" & adoRS3("id") & """>" & adoRS3("name") & " </a><BR>" & vbCrlf
adoRS3.MoveNext
Wend 
	adoRS3.Close
	set adoRS3 = nothing
%>
<h3 align="center">我的信息</h3>
<%
while not adoRS4.EOF 
response.Write adoRS4("message") & "" & vbCrlf
response.Write "     <a href=""action.asp?op=setmsg&id=" & adoRS4("id") & """>知道了</a><br>" & vbCrlf
adoRS4.MoveNext
Wend 
	adoRS4.Close
	set adoRS4 = nothing
%>
</body>
</html>

⌨️ 快捷键说明

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