📄 聊天室.asp
字号:
<html>
<head>
<title> 聊天室</title>
<%
dim name
name=request("user_name")
%>
</head>
<body>
<form name="form1" method="post" action="">
<%=name%>请发言:<input type="text" name="pronunciation" size="30">
<input type="submit" value=" 发送 ">
</form>
<%
If trim(request("pronunciation"))<>"" Then '如果有发言内容,就加到Application中
Application.Lock '先锁定
Application("show")= Request("pronunciation") & "<br>" & Application("show")
Application.Unlock '解除锁定
End if
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -