
Saving Objects in Session variables
Quote:
> How else can I save the state of complicated variable
> structures?
Serialize them to some text form which can be saved in Session/Application scope and later deserialized back to an object instance.
XML would be my choice. In fact, you can even use an Msxml2.FreeThreadedDOMDocument instance at Session/Application scope. All of this assumes you have data only object instances (i.e., no object methods).
--
Michael Harris
Microsoft.MVP.Scripting
Seattle WA US
--