?? 聊天室.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 + -