mylib.asp

来自「档案管理系统」· ASP 代码 · 共 47 行

ASP
47
字号
<!--#include file="docdb.inc"-->
<%
	dim strDocCls
	dim adoRS1,adoRS2,adoRS3
	set adoRS1 = getLibRSByBorrower(getUser(),0)
	set adoRS2 = getLibRSByBorrower(getUser(),1)
	set adoRS3 = 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 getDocNameById(adoRS1("document")) & " 申请中……<br>" & vbCrlf
adoRS1.MoveNext
Wend 
	adoRS1.Close
	set adoRS1 = nothing
%>
<h3 align="center">我的在借档案</h3>
<%
while not adoRS2.EOF 
response.Write getDocNameById(adoRS2("document")) & " 借阅中……<br>" & vbCrlf
adoRS2.MoveNext
Wend 
	adoRS2.Close
	set adoRS2 = nothing
%>
<h3 align="center">我的借阅信息</h3>
<%
while not adoRS3.EOF 
response.Write adoRS3("message") & "" & vbCrlf
response.Write "     <a href=""action.asp?op=setmsg&id=" & adoRS3("id") & """>知道了</a><br>" & vbCrlf
adoRS3.MoveNext
Wend 
	adoRS3.Close
	set adoRS3 = nothing
%>
</body>
</html>

⌨️ 快捷键说明

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