Howdy Ed,
Session information is information that an application knows about its
Session. Take away the fancy 'session' label and it's just part of <all> the
information that your application has.
So your question becomes: "Is it possible to pass <information> from one
ASP.Net project/web
application to another?"
And the answer is, of course, a resounding YES.
How then do applications exchange information?
If they are on the same machine, use shared memory, memory files, sockets,
Windows messages, COM interfaces, etc, etc.
If they are on the same file system/intranet - use files, sockets, etc,
etc.
If they are on remote machines - use Web Services, Http, some other
protocol, etc, etc.
Loads of possibilities. It just depends what you want to share, how, why
and all that.
Regards,
Fergus