checknote.asp
来自「自由领域ASP+WAP同学录(V1.0)系统是一套仿ChinaRen的即可用电脑」· ASP 代码 · 共 22 行
ASP
22 行
<%
studentid=session("studentid")
name=session("name")
sub checknote
dim tips
tips=0
set rs=server.createobject("adodb.recordset")
sql="select * from permsg where towho='"&studentid&"' and isread=0"
rs.open sql,conn,1,3
while (not rs.eof)
tips=tips+1
rs.movenext
wend
if tips>0 then
txt="<p><a href='readnote.asp?studentid="&studentid&"'>新短消息"&tips&"条</a></p>"
response.write txt
end if
rs.close
set rs=nothing
end sub
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?