views:

84

answers:

1

Is there any user specific caching object available inside the Application_AuthenticateRequest? I've notice Session and Cache are not available. I'm using .net framework 3.5 and aspx.

+1  A: 

You should be able to access what you want via:

HttpContext.Current
Noon Silk
+1 Better yet, HttpRuntime.Cache just to avoid a few calls
Sergey