admin.asp

来自「这是聊天室的源代码 很好实现的 看看吧」· ASP 代码 · 共 25 行

ASP
25
字号
<!--#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
		End If
	End If
	%>
	</center>
</body>

⌨️ 快捷键说明

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