1 2 下一页 一、使用 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 集合保存应用程序信息 (责任编辑:admin) |