Re: Session data

From: Raymond Lewallen (Raymond.CTR.Lewallen_at_nospam.faa.gov)
Date: 09/29/04


Date: Wed, 29 Sep 2004 09:18:55 -0500

Mike,

How are you storing your session information? In process, session state
server or Sql Server? I used to have similar problems, but switched to Sql
Server to manage state and don't have issues anymore.

-- 
Raymond Lewallen
http://rlewallen.blogspot.com
"Mike" <Mike@discussions.microsoft.com> wrote in message
news:55A27A7E-8FF4-49A9-B931-2AC09AC81FE2@microsoft.com...
>
> Hi,
>
> I am developing an application with framesets (header, left navigation,
and
> content). Each frameset loads an ".aspx" page, and in one of these pages,
I
> store some information in the Session object, as follows:
>
> ...
> Session["ABC"] = false;
> ...
>
> When the page has finished loading, I click on a link button that opens a
> Modal window, in which I am trying to access the Session information
stored
> before. However, this does not always work. Sometimes, the Session object
is
> empty and the information not available. I am not using Output caching.
>
> Do you know what the problem could be?
>
> Thanks.
> Mike
>
>