Hi,
A session variable can pretty much take whatever you throw at it. I'd maybe
consider creating an array of objects and putting it in a session variable,
rather than the other way around. I have never tried that before, as I try
to avoid session variables if possible.
On your second point, for years developers have been looking for an
alternative to session variables. This article discusses a method using a
guid and a database.
http://www.4guysfromrolla.com/webtech/041600-2.shtml
Good luck,
Regards,
Stuart
MCSD, MCT
"jty202" <> wrote in message
news:uTOPjsN$...
> 1. Can I have an array of objects as sessions variable in other words
> sessions array-of-objects? If so how?
>
> 2. Besides Sessions variable what else can I use to store large amount of
> data temporarily thats related to the current user.
> ( can I use temp files? and instead of storing the large text data in a
> sessions variable or arrays, I could store the temp-file names which
> contains the large text data? )
>
>
>
>