?? chat.asp
字號(hào):
<%
Response.Expires = 0
action = Request.QueryString("action")
msg = Request.form("msg")
user = Request.form("user")
id = Request.form("id")
If Len(id) = 0 Then
id = "default"
End If
Application.Lock
If action = "send" Then
list = Application(id)
list = list + user + ": " + msg + chr(13)
Application(id) = list
End If
If action = "clear" Then
list = ""
Application(id) = list
End If
If action = "update" Then
list = Application(id)
End If
Application.Unlock
response.write("list="+Server.URLEncode(list))
%>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -