📄 admin.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 + -