ASP入门基础教程:使用Contents集合应用程序信息
2015-10-21编辑:ljnbset
ASP入门基础教程- 保存应用程序信息
使用 Contents 集合应用程序信息
1、Contents 集合是由所有通过脚本语言添加到应用程序的变量和对象组成的集合。可以使用这个集合来获得给定的应用程序作用域的变量列表或指定某个变量为操作对象。Contents 集合是 Application 对象默认的集合,因此下述两种格式是等价的:
Application.Contents("变量名")
Application("变量名")
其中,“变量名”是需要操作的 Application 变量名称。
2、实例代码(1.asp):使用 Session 对象编写一个简单的计数器程序。
Application实例
<%
name=Request.Form("visitor")
i=Request.Form("chatno")
if name<>"" then
if i=0 then
Application("chinese")=Application("Chinese")+1
chat="中文"
elseif i=1 then
Application("English")=Application("English")+1
chat="英文"
end if
Response.write "
Response.write "" & chat & "讨论区的第"
if chat="中文" then
Response.write Application.Contents("Chinese") & "位客人。
"
else
Response.write Application.Contents("English") & "位客人。
"
end if
Response.write "返回
Response.end
end if
%>