I have a quite complex data structure whose content is specific to a
session. So, it cannot be global to the application.
I need this structure just to share some data between 2 or 3 pages. The
whole application has at least 20 pages.
If I store that structure into a Session object I think it is not the best
idea because I need this information only once for 2 or 3 pages in order to
process some other date.
What do you think it is the best solution to store this big structure?