> Hello lander,
>
[quoted text clipped - 15 lines]
> "The greatest danger for most of us is not that our aim is too high and we
> miss it, but that it is too low and we reach it" (c) Michelangelo
As for the second question, do you mean aspnet and IIS both pool the
session&Global data? So when aspnet_wp.exe recycles,largely they won't
get lost ?
Michael Nemtsev [MVP] - 05 Mar 2008 12:46 GMT
Hello lander,
It depends where you store your sesson. If in InProc mode then your session
can't survive restart, because it was store in memory.
You need to use SQL Session mode to partly guarantee that your session will
be alive after restart
---
WBR,
Michael Nemtsev [.NET/C# MVP] :: blog: http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
l> As for the second question, do you mean aspnet and IIS both pool the
l> session&Global data? So when aspnet_wp.exe recycles,largely they
l> won't get lost ?
l>
lander - 05 Mar 2008 13:59 GMT
> Hello lander,
>
[quoted text clipped - 14 lines]
> l> won't get lost ?
> l>
1, if I choose InProc, is it stored in aspnet_wp.exe?
2, if i store in state server, how often will it get lost? Or what it
mostly depends on in order to avoid getting lost?
Tom
Thanks!
bruce barker - 05 Mar 2008 16:34 GMT
when asp.net recycles, the appdomain is unloaded, so all .net statics (which
is what inproc session uses) are lost. if you use out of proc sessions, they
will not be lost by a recycle.
-- bruce (sqlwork.com)
> > Hello lander,
> >
[quoted text clipped - 19 lines]
> session&Global data? So when aspnet_wp.exe recycles,largely they won't
> get lost ?