Is it possible to declare an object (myObject) in a way that makes it dispoible for a whole session, without being forced to declare it in each object where I want to use myObject like this:

Public myObject As myClass = HttpContext.Current.Session("myObject ")

Thank you very much for any advice!

Fabian