ASP入门基础教程- 保存应用程序信息
2006-10-26 12:00:58 来源:WEB开发网核心提示:一、使用 Contents 集合应用程序信息1、Contents 集合是由所有通过脚本语言添加到应用程序的变量和对象组成的集合,可以使用这个集合来获得给定的应用程序作用域的变量列表或指定某个变量为操作对象,ASP入门基础教程- 保存应用程序信息,Contents 集合是 Application 对象默认的集合,因此下述
一、使用 Contents 集合应用程序信息
1、Contents 集合是由所有通过脚本语言添加到应用程序的变量和对象组成的集合。可以使用这个集合来获得给定的应用程序作用域的变量列表或指定某个变量为操作对象。Contents 集合是 Application 对象默认的集合,因此下述两种格式是等价的:
Application.Contents("变量名")
Application("变量名")
其中,“变量名”是需要操作的 Application 变量名称。
2、实例代码(1.asp):使用 Session 对象编写一个简单的计数器程序。
<html>
<head><title>>Application.Contents集合的应用</title>
</head>
<body>
<center><h3>Application实例</h3><hr width="70%"></center>
<%
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 "<center>欢迎<b>" & name & "</b>,你是来到"
Response.write "<b>" & chat & "</b>讨论区的第"
if chat="中文" then
Response.write Application.Contents("Chinese") & "位客人。<p>"
else
Response.write Application.Contents("English") & "位客人。<p>"
end if
Response.write "<a href='4-6-2.asp'>返回</a></center>"
Response.end
end if
%>
<center>
<form method=post>
<table><tr><td>名字:<td><input type=text name="visitor" size=12>
<tr><td>讨论区:<td><Select name="Chatno">
<option value=0>中文</option>
<option value=1>英文</option>
</select>
<input type=submit value="确定">
</table>
</form>
</center>
</body>
</html>
二、使用Application.StaticObjects 集合保存应用程序信息
- ››asp.net页面弄成伪静态页面
- ››Asp.net 中将汉字转换成拼音的方法
- ››ASP.NET及JS中的cookie基本用法
- ››ASP.NET获取MS SQL Server安装实例
- ››asp.net实现调用百度pai 在线翻译英文转中文
- ››ASP.NET页面选项进行提示判断
- ››Asp.net定时执行程序
- ››ASP.NET中利用DataList实现图片无缝滚动
- ››ASP.NET验证控件RequiredFieldValidator
- ››ASP.NET中使用System.Net.Mail发邮件
- ››ASP.NET中获取用户控件中控件的ID
- ››ASP.NET中FileBytes写成文件并存档
更多精彩
赞助商链接