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

📄 admin.asp

📁 这是聊天室的源代码 很好实现的 看看吧
💻 ASP
字号:
<!--#INCLUDE FILE="function.asp"-->
<!--#INCLUDE FILE="config.asp"-->
<html>
<head>
</head>
<body>
	<h2 align="center">管理本聊天室</h2>
	<center>
	<form action="" method="post" name="form1">
		请输入密码<input type="password" name="password">
		<br><input type="radio" name="del" value="says" checked>清空聊天内容
		<br><input type="submit" value="确定">
	</form>
	<%
	If Request.Form("password")=password Then
		If Request.Form("del")="says" Then
			'清空聊天内容
			Application.Lock
			Application(Session("chatroom"))=""
			Application.Unlock
			'然后自动关闭本窗口
			Response.Write "<script language='javascript'>self.close();</script>"
		End If
	End If
	%>
	</center>
</body>

⌨️ 快捷键说明

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