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

📄 4-8.asp

📁 ASP入门与提高实用教程 源文件(上传网站)
💻 ASP
字号:
<html>
<head>
	<title> Application对象用法示例</title>
	<meta http-equiv="refresh" content="60">
</head>
<body>
	<form  action=""  method="post"  name="form1">
	请发言:<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
	Response.Write Application("show")     显示聊天内容
	%>
</body> 
</html>


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -