📄 mylib.asp
字号:
<!--#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -