I personally would never use session variables to hold transitory record data (ie: what the user is working on). For me the session variables is all about the user at that login, nothing about what they are trying to do.
if I wanted multiple browser instances (or multiple tabs) to deal with each record, I'd be passing the record ID around in the URL or form submit's. Treat each browser tab (or instance) as a silo but that's just my 2c. On Thu, Dec 2, 2010 at 2:36 PM, Anthony Landers < [email protected]> wrote: > Hi, > > I have an inhouse billing application that I now support and are wanting to > make some modifications to. > > > > I am wanting end users to be able to open up multiple copies of our cf web > application in different IE windows. > > This is so they can be looking at a persons invoice in a session of > Internet Explorer and then receive a help desk call and proceed to look at a > different persons invoice in a second session of Internet Explorer. > > > > The application uses session variables to hold ID's etc so if the end user > then went back to their first Internet Explorer session it is possible that > if they clicked onto a button to show the persons details, they would get > the details from the 2nd Internet Explorer session (help desk call) as the > session variables would have changed. > > > > So, my question is, can you have separate session variables per Internet > Explorer window (not tab)? > > Is there a better way to manage having the application open multiple times > on the one PC? > > > > Hope this makes sense. > > > > Cheers > > Anthony > > > > -- > You received this message because you are subscribed to the Google Groups > "cfaussie" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<cfaussie%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/cfaussie?hl=en. > -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/cfaussie?hl=en.
