⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 talker.asp

📁 是个关于asp做得聊天室
💻 ASP
字号:
<html>

<head>
<meta http-equiv="refresh" content="10;url=help.asp">
<title>聊天成员</title>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<base target="rbottom">
</head>

<body bgcolor="rgb(224,241,227)">

<font color=red><% =session("myroom") %></font>聊天话题:<br>

<%
set newconn=server.CreateObject ("ADODB.Connection")
newconn.ConnectionString ="DSN=ChatRoom"
newconn.Open 

newsql="select Topic from RoomInfo where RoomName='" & session("myroom") & "'"
set newrecord0=newconn.Execute (newsql)
if not newrecord0.bof then
	Response.Write "^_^<font color=vbblue>" & newrecord0(0) & "</font>^_^<br>"
end if
newrecord0.close
set newrecord0=nothing

%>

<font color=red><% =session("myroom") %></font>聊天成员:<br>
<%


mysql="select UserID from UserOnLine where RoomName='" & session("myroom") & "'"
set newrecord=newconn.Execute (mysql)

do while not newrecord.eof

	Response.Write "--<font color=vbblue>" & newrecord("UserID") & "</font>--<br>"
	
	newrecord.movenext
loop


%>


</body>
</html>

⌨️ 快捷键说明

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