Class instance help

  • Thread starter Thread starter Timothy V
  • Start date Start date
T

Timothy V

Hi,
Can anyone tell me how to carry an instance of a class (any class) over
different pages (one session).

Thank you very much in advance,

Tim.
 
you can simply put that instance into a session variable and access the
session in other pages.
or you can serialize to some source and deserialize it in different pages as
required (for making simple things look complicated).

Av.
 
Back
Top