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

📄 admin.asp

📁 与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="radio" name="del" value="says" checked>清空聊天内容
		<br><input type="submit" value="确定">
	</form>
	<%
	'教师可以删除
	If Session("user_type")="T" 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -