AutoCAD 3DMAX C语言 Pro/E UG JAVA编程 PHP编程 Maya动画 Matlab应用 Android
Photoshop Word Excel flash VB编程 VC编程 Coreldraw SolidWorks A Designer Unity3D
 首页 > ASP编程

解析ASP的Application和Session对象

51自学网 http://www.51zixue.net

  使用Application和Session的事件

  ASP的Application和Session对象体现了其他ASP内置对象所没有的特征——事件。然而,正像在前面的对象成员表中看到的那样,这些都是ASP会话和应用程序的工作相联系的事件。

  1. Application和Session的事件处理器
 
  每当一个应用程序或会话启动或结束时,ASP触发一个事件。可以通过在一个特殊的文件中编写普通的脚本代码来检测和应答这些事件,这个文件名为global.asa,位于一个应用程序的根目录中(对于缺省的Web网站是/InetPub/WWWRoot目录,或是作为一个实际应用程序定义的一个文件夹)。这个文件可以包含一个或多个HTML的<OBJECT>元素,用于创建将在该应用程序或用户会话内使用的组件实例。

  下面的代码是global.asa文件的一个例子。我们只关注<OBJECT>元素以及以Set关键字开始的那些代码行:

<!-- Declare instance of the ASPCounter component
with application-level scope //-->
<OBJECT ID=”ASPCounter” RUNAT=”Server” SCOPE=”Application”
PROGID=”MSWC.Counters”>
</OBJECT>

<!-- Declare instance of the ASPContentLimk component
with session-level scope //-->
<OBJECT ID=”ASPContentLink” RUNAT=”Server” SCOPE=”Session”
PROGID=”MSWC.NextLink”>
</OBJECT>

<SCRIPT LANGUAGE=”VBScript” RUNAT=”Server”>

Sub Application_onStart()
 ‘Create an instance of an ADO Recordset with application-level scope
 Set Application(“ADOConnection”)= Server.CreateObject(“ADODB.Connection”)
 Dim varArray(3) ‘Create a Variant array and fill it
 VarArray(0) = “This is a”
 VarArray(1) = “Variant array”
 VarArray(2) = “stored in the”
 VarArray(3) = “Application object”
 Application(“Variant_Array”) = varArray‘Store it in the Application
 Application(“Start_Time”) = CStr(Now) ‘Store the date/time as a string
 Application(“Visit_Count”) = 0 ‘Set Counter variable to zero
End Sub

Sub Application_onEnd()
 Set Application(“ADOConnection”) = Nothing
End Sub

Sub Sesson_onStart()
 ‘Create an instance of the AdRotator component with session-level scope
 Set Session(“ASPAdRotator”) = Server.CreateObject(“MSWC.AdRotator”)
 Dim varArray(3) ‘Create a Variant arry and fill it
 VarArray(0) = “This is a”
 VarArray(1) = “Variant array”
 VarArray(2) = “stored in the”
 VarArray(3) = “Session object”
 Session(“Variant_Array”) = varArray ‘Store it in the Session
 Session(“Start_Time”) = CStr(Now) ‘Store the date/time as a string
 
 ‘We can access the contents of the Request and Response in a Session_onStart
 ‘event handler for the page that initiated the session. This is the *only*
 ‘place that the ASP page context is available like this.
 ‘as an example, we can get the IP address of the user:
 Session(“Your_IP_Address”) = Request.ServerVariables(“REMOTE_ADDR”)
 Application.Lock
 intVisits = Application(“Visit_Count”) +1
 Application(“Visit_Count”) = intVisits
 Application.Unlock
End Sub

Sub Session_onEnd()
 Set Session(“ASPAdRotator”) = Nothing
End Sub
</SCRIPT>

  因为这个global.asa文件用于本章中的示例页面,所以将需要将该文件放到Web网站的根目录中,或者放到已配置为一个虚拟应用程序的目录中,并且在该目录中包含有其他示例文件。

  读取和存储值

  注意上面的例子怎样读取Application和Session的变量,与在Request和Response对象的集合中所采取的方式相同。设置这些变量的值:

Application(“variable_name”) = variable_value
Application(“variable_name”) = variant_array_variable_name
Set Application(“variable_name”) = object_reference

  获取这些变量的值:

variable_value = Application(“variable_name”)
variant_array_variable = Application(“variable_name”)
Set object_reference = Application(“variable_name”)

  当然,对于Session对象可采取同样的方法。

  可以看到,当从一个Session事件处理器访问时,怎样“锁定”(Lock)和“解锁”(unlock)该Application对象;当从一个ASP网页访问时,需要进行相同的处理。用Application事件内的代码访问Application对象中的值时,不要求这么做。这是因为在任何应用程序中只有一个Application对象的实例,并且其事件处理器的代码只在没有活动的用户会话时进行。

  也可以看到一个基本的用户会话计数器是如何实现的。这里使用一个应用程序级的变量Visit_count,当新的会话启动时它就自动增加。 一般也不限制简单地把值保存到Application或Session对象中。例如,Web开发者的Web站点在http://webdev.wrox.co.uk上,有相应的一个global.asa文件,当一个新的会话启动时该文件就在服务器上的数据库中写入相应的条目,数据细节从Request.ServerVariables集合中获取。这提供了一个基本的方法统计访问者的数量,并收集访问者的一些基本信息。

 
 

上一篇:ASP设计动态页中服务器端的处理  下一篇:ASP应用程序设计的Web状态管理分析