Chapter 4: Managing State


Overview

In this chapter, you will learn how to:

  • Store and retrieve application state.

  • Store and retrieve session state.

  • Configure session state storage.

  • Use client-side cookies for state storage.

Most applications of any significance will use pieces of data, or variables, that need to be maintained across a series of requests or shared between multiple users of an application. This data is referred to as state. In a rich client application, it’s relatively simple to maintain individual user state simply by allocating space in memory on the client machine. In Web applications, managing user and application state is more challenging. The primary reason for this is that the Hypertext Transfer Protocol (HTTP)—the protocol used to send and receive requests through a Web browser—is inherently stateless. That is, HTTP doesn’t inherently provide a way for the Web server to identify a series of requests as coming from the same user, making it difficult for the Web server to maintain state and associate it with an individual user.

In classic ASP, this limitation was overcome through an in-memory collection of key-value pairs associated with the intrinsic Session object. This collection, however, had a number of important limitations of its own, which are discussed later in this chapter.

In addition to individual user state, many applications need to store and retrieve application-level state information that is global to all users of the Web application. To maintain application state in classic ASP, the intrinsic Application object exposed a collection similar to that of the Session object’s collection.




Microsoft ASP. NET Programming with Microsoft Visual Basic. NET Version 2003 Step by Step
Microsoft ASP.NET Programming with Microsoft Visual Basic .NET Version 2003 Step By Step
ISBN: 0735619344
EAN: 2147483647
Year: 2005
Pages: 126

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net