15 Seconds is looking for technical professionals working in the Active Server field to write articles. If you are interested, take a look at our writer's guide and submit your ideas.
State Section One of the challenges of the HTTP protocol is maintaining state between page requests. There are several ways to do this in IIS including cookies, the session object and other third party objects.
ASP Session Manager works by inserting 2 lines of code at the top of your ASP script and have the session serialize itself to any DBMS. There are three licenses available, ranging from a single binary to an enterprise ISP license with source code.
Web farm getting out of control? You need scalability! SA-SessionPro is a simple, yet
very powerful means of making your ASP application persistent--share and save
information on a per-user, per-application, per-server, or per network basis. SA-Session is
like the built in Session object that comes with the IIS Server, except it allows developers
more flexibility. It has the ability to store information without expiration and the ability to
preserve session state across multiple machines in a web farm.
SessionFarm is an Active Server Pages component that allows you to manage session state on multiple servers in a web-farm. SessionFarm utilizes the built-in IIS Session object which means you don't have to learn new methods
and objects. The IIS Session object is stored on either a file-share or a SQL database using optimized stored procedures.
SessionFarm requires no rewriting of your existing code and works by supplementing the existing IIS Session.
For code samples, see http://www.groat.com/sessionfarm/implement.asp.
A seemingly innocent Inquiry has sparked a member of the 15Seconds discussion list to answer with a sermon on the evil nature of Session Variables. [Read This Article][Top]
Hidden frames allow users to maintain almost any kind of data, and maintain state easily and reliably. Mark Burnham's article uses a shopping cart scenario to show simple ways to read and write data, and call functions from a hidden frame. Visible frames can be loaded with virtually anything, but these hidden frames will always be there, holding data until it's needed. [Read This Article][Top]
Mark Burnham offers a quick and easy way to check if your browser accepts cookies. If it does, then you're clear to use session variables when writing ASP scripts. Just follow the sample code to learn how to copy a form and compare SessionIDs. [Read This Article][Top]
Brian Reagan demonstrates how to use the LookupTable object to avoid problems with session objects timing out. Read this in-depth article and learn the tricks of the trade. [Read This Article][Top]
In this issue we will discuss two built in states of the Internet Information Server, session and application. We will also continue where we left off with the Nov 08, 1997 - Sharing Cookies Across Domains Issue, and show how to maintain session state across multiple servers in a web farm. Also discussed, will be user state and the use of personalization to maintain user state. [Read This Article][Top]
ActiveNews(NOTE: ASPToday articles require a paid subscription)
Bart Gerardi assesses the strengths and weaknesses of different options when using ASP session variables in a load balanced environment. [Read The Article]
Mathew Shaw shows you how to detect whether the client supports, accepts or has disabled cookies, using the Session_OnStart routine of global.asa. You can even work around those users who turn off their cookies during their visit. [Read The Article]
One of the things that most new ASP users find confusing is the concept
of sessions and applications. This article is meant as an introductory level
overview to try and alleviate some of the confusion and misconceptions
associated with these topics. [Read The Article]
What happens when the forms in your web page are mistakenly resubmitted or partially submitted by the user? If it causes you problems, have a look Andrea Chiarelli's JavaScript solution [Read This Article]
This article discusses one of the most useful features of Active Server Pages technology: session state management. The ability to store information to share among Web pages in session variables and reuse it in any page within the same browser session gives the developer a means to bypass the lack of state in HTTP connections in a simple and elegant way. [Read This Article]