Hy,
Let's say that I have class Node with some parameters Node[] child's, string id, string content ...
This class is like a another storage for data from mssql database.
And that web-application is running on IIS server and is written in ASP.NET C#
Now when one user open that page, certain data is dumped from db into that instance Node class depends on which sub-page user open.
And then another user open the same page and the same sub-page .. but again the same data is dumped into another instance of class Node.
What I want is to share that Node class between users, is that possible, so one user open the page and if no instance of Node class is made, new one is created, otherwise the same Node class is used and I'll use much, much less memory with the application :}