The Application Object Maintaining State
6.8.2 The Application Object
Some state should be maintained at the application level rather than at the session level, meaning that the state information is available to all sessions in the application. This is what the Application object is for. It is used just like the Session object, except that values stored in the Application object are visible to all sessions in the application. The Application object is instantiated when the first session begins, and it ends when no more sessions exist. Be careful when writing new values to the Application object. Because a single Application object is shared by all concurrent sessions which may be running on separate threads in IIS, threading- concurrency issues come into play. For example, consider an application in which each session stores its users name into an array that is stored in the Application object. The application might use this information to display a summary screen of all users currently active in the application. Simplistic code to accomplish this task might look like this: Wrong Dim names As ArrayList = ApplicationNames If names Is Nothing Then names = New ArrayList ApplicationNames = names End If names.AddtxtName.Text Again, this code might be executed in response to a button-click event in which the user submits some information collected on a form. It assumes that there is a text box named txtName on the form. The information thus collected can be used by any session in the application. Note that all sessions in the application add their data to the same array list. A simple page to view this information might look like this: Page AutoEventWireup=false Language=VB Debug=true script runat=server Protected Overrides Sub OnLoade As EventArgs 301 lstNames.DataSource = ApplicationNames lstNames.DataBind End Sub script html body Currently active users:br asp:ListBox id=lstNames runat=server body html Here the code is loading a ListBox control with the contents of the array list saved in the Application object. Data binding is explained in Chapt er 8 . Theres nothing conceptually wrong with this approach, but the code that saves the information needs a little more attention. The problem is that two separate requests in the same application, but in different sessions, could attempt to modify the array list at the same time. The array list is not thread- safe, so problems could ensue, possibly resulting in lost data or application exceptions. To resolve this issue, wrap the code that sets the values in calls to the Application objects Lock and UnLock methods, like this: Application.Lock Dim names As ArrayList = ApplicationNames If names Is Nothing Then names = New ArrayList ApplicationNames = names End If names.AddtxtName.Text names = Nothing Application.UnLock During the time after the Lock method has been called but before the UnLock method has been called, if code on another thread calls the Lock method, that thread will block temporarily cease to run until the code on the first thread calls the UnLock method. This ensures that two threads arent accessing the array list at the same time. The downside to this is that performance is hurt if multiple threads are blocked waiting for access to the same application data. This makes it imperative to call UnLock as soon as possible and not to forget to call it. The Application object is an instance of the HttpApplicationState class defined in the System.Web namespace. Commonly used properties of the HttpApplicationState class are: AllKeys An array of all keys used in the Application object. A key is the name of the data being stored in the Application object, as opposed to the value of that data. For example, in the following line of code, the session key is Names : ApplicationNames = names The following code fragment loops through all the keys in the Application object: For Each str In Application.AllKeys ... Next The type of the AllKeys property is String Array. 302 Count The number of items stored in the Application object. The type is Integer. StaticObjects A collection of objects declared with the object scope=Application tag in the applications global.asax file. The type is HttpStaticObjectsCollection defined in the System.Web namespace. See Sect ion 6.9 later in this chapter. The commonly used methods of the HttpApplicationState class are: Clear Clears all values from the Application object. The syntax is: Public Sub Clear Lock As explained earlier, prohibits code in other sessions from writing to the Application object until UnLock is called. The syntax is: Public Sub Lock Remove Clears a single item from the Application object. The syntax is: Public Sub RemoveByVal name As String UnLock Unlocks the Application object after a call to Lock. The syntax is: Public Sub UnLock6.8.3 Cookies
Parts
» VB.NET - (O'Reilly) Programming Visual Basic NET
» What Is the Microsoft .NET Framework?
» hello, world An Example Visual Basic .NET Program
» Hello, Windows An Example Visual Basic .NET Program
» Hello, Browser An Example Visual Basic .NET Program
» Source Files Identifiers The Visual Basic .NET Language
» Numeric Literals String Literals Character Literals
» Date Literals Boolean Literals Nothing Summary of Literal Formats
» Custom Types Collections Types
» The Namespace Statement The Imports Statement
» Symbolic Constants Scope The Visual Basic .NET Language
» Access Modifiers Assignment The Visual Basic .NET Language
» Unary Operators Arithmetic Operators
» Relational Operators Operators and Expressions
» String-Concatenation Operators Bitwise Operators
» Logical Operators Operator Precedence
» Call Exit Branching Statements
» Goto If RaiseEvent Branching Statements
» Return Select Case Branching Statements
» For Each Iteration Statements
» Object Instantiation and New Constructors
» Handling Events Inheritance Classes
» Passing arrays as parameters
» Variable-length parameter lists Main method
» Implementing interface methods Overriding inherited methods
» Overloading Overloading inherited methods
» The MyBase Keyword Nested Classes Destructors
» Interfaces The Visual Basic .NET Language
» Enumerations The Visual Basic .NET Language
» Exceptions The Visual Basic .NET Language
» Delegates The Visual Basic .NET Language
» Using Events and Delegates Together
» Creating Custom Attributes Attributes
» Standard Modules Conditional Compilation
» Summary The Visual Basic .NET Language
» Common Language Infrastructure CLI and Common Language Runtime CLR
» Global Assembly Cache GAC Comparison of Assemblies, Modules, and Namespaces
» Application Domains Common Language Specification CLS
» Intermediate Language IL and Just-In-Time JIT Compilation Metadata
» Finalize Memory Management and Garbage Collection
» Dispose Memory Management and Garbage Collection
» A Brief Tour of the .NET Framework Namespaces
» Configuration File Format Configuration
» Configuration Section Groups The appSettings Section
» Adding event handlers Creating a Form in Code
» Handling Form Events Windows Forms I: Developing Desktop Applications
» Relationships Between Forms Windows Forms I: Developing Desktop Applications
» Merging Menus MDI Applications
» Detecting MDI Child Window Activation
» Component Attributes Windows Forms I: Developing Desktop Applications
» The Graphics Class 2-D Graphics Programming with GDI+
» The Pen Class 2-D Graphics Programming with GDI+
» The Brush Class 2-D Graphics Programming with GDI+
» System colors The Color Structure
» Alpha Blending 2-D Graphics Programming with GDI+
» Antialiasing 2-D Graphics Programming with GDI+
» The PrintPageEventArgs Class Printing
» The OnBeginPrint and OnEndPrint Methods Choosing a Printer
» The PageSettings Class Printing
» The PrinterSettings Class Printing
» Page Setup Dialog Box Print Preview
» Summary Windows Forms I: Developing Desktop Applications
» The Button Class The CheckBox Class The ComboBox Class
» The DateTimePicker Class The GroupBox Class The ImageList Class
» The Label Class The LinkLabel Class
» The ListBox Class Common Controls and Components
» The ListBox.ObjectCollection Class
» The ListView Class Common Controls and Components
» The MonthCalendar Class Common Controls and Components
» The Panel Class The PictureBox Class
» The RadioButton Class Common Controls and Components
» The TextBox Class The Timer Class
» Other Controls and Components
» Control Events Windows Forms II: Controls, Common Dialog Boxes, and Menus
» The Anchor Property Form and Control Layout
» Controlling dock order The Dock Property
» The Splitter control The Dock Property
» ColorDialog FontDialog OpenFileDialog Common Dialog Boxes
» PageSetupDialog PrintDialog PrintPreviewDialog SaveFileDialog
» Adding Menus in the Visual Studio .NET Windows Forms Designer
» Programmatically Creating Menus Menus
» Building Controls from Other Controls
» Building Controls That Draw Themselves Building Nonrectangular Controls
» Summary Windows Forms II: Controls, Common Dialog Boxes, and Menus
» Setting control properties using attributes Adding event handlers
» AutoEventWireup Handling Page Events
» The Button control Web Controls
» The CheckBox control The DropDownList control
» The Image control The Label control
» The ListBox control Web Controls
» The RadioButton control Web Controls
» The Table control Web Controls
» The TextBox control Web Controls
» Other web controls Web Controls
» HTML Controls Handling Control Events
» Programmatically Instantiating Controls More About Server Controls
» More About Validation-Control Tag Attributes
» Using Validation-Control Properties Providing a Summary View of Validation Failures
» Performing Custom Validation Adding Validation
» Using Directives to Modify Web Page Compilation
» The Server Object ASP.NET Objects: Interacting with the Framework
» The Application Object The Session Object The Cache Object The Request Object
» The Response Object ASP.NET Objects: Interacting with the Framework
» Discovering Browser Capabilities ASP.NET and Web Forms: Developing Browser-Based Applications
» The Session Object Maintaining State
» The Application Object Maintaining State
» Session and Application Startup and Shutdown global.asax Compiles to a Class
» Adding Global Objects Application-Level Code and global.asax
» ASP.NET authorization Authorization
» Windows NTFS authorization Code-access authorization
» IUSR_ComputerName Impersonation Accessing Network Resources
» User Controls Designing Custom Controls
» Creating a custom server control using Visual Studio .NET
» Creating a custom server control in code Using a custom server control in Visual Studio .NET
» Summary ASP.NET and Web Forms: Developing Browser-Based Applications
» The WebService Attribute The WebMethod Attribute
» Testing a Web Service with a Browser
» Consuming a Web Service in Visual Studio .NET
» Consuming a Web Service in Notepad
» Synchronous Versus Asynchronous Calls
» Web-Service Descriptions Web-Service Discovery
» Limitations of Web Services Summary
» A Brief History of Universal Data Access Managed Providers
» Connecting to a SQL Server Database
» Connecting to an OLE DB Data Source
» The DataSet Class Finding Tables
» Finding Column Values Finding Column Definitions Changing, Adding, and Deleting Rows
» Writing Updates Back to the Data Source
» Relations Between DataTables in a DataSet
» The DataSets XML Capabilities
» Binding a DataSet to a Windows Forms DataGrid
» Binding a DataSet to a Web Forms DataGrid
» Typed DataSets ADO.NET: Developing Database Applications
» Reading Data Using a DataReader
Show more