user_message.asp

来自「WAP网上购物系统源程序,,有兴趣的朋友,一起研究一下..交流经眼」· 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='User_Message_list.asp?studentid="&studentid&"'>&#x65B0;&#x77ED;&#x6D88;&#x606F;"&tips&"&#x6761;</a></p>"
response.write txt
end if
rs.close
set rs=nothing 
end sub
%>
 

⌨️ 快捷键说明

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