Tried to find an answer but I didn't find any information...
I've build a full property based on this following example:
private static Foo _foo;
public static Foo foo {
get
{
if (_foo!= null)
return _foo;
//else do some logic and fill _foo;
_foo = ....;
}};
Question is, when will _foo be null according to life span on the page? On first load of course it will be null but when will it be null again? On recycle? on iisreset? or page reload?
This property sits on an class lib (external dll)