acquirerequeststate

Session variable getting lost?

Given this Global.asax.cs: using System; using System.Web; namespace Foo.Web { public class Global : HttpApplication { private const string IntroductionPageShownSessionKey = "IntroductionPageShownSessionKey"; protected void Application_AcquireRequestState(object sender, EventArgs e) { ShowIntroductionIf...