> i want something that is specific to this request - specifically
>
> (a) I can set in the global.asax Application_BeginRequest handler and
> retrieve in the page itself
That's what the Session object is for...
> (b) is not shared between concurrent requests on the same session
When you put something in the Session object, it isn't *shared* between
concurrent requests per se - it is *available* to all requests, which is not
the same thing...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Andy Fish - 19 Sep 2007 17:31 GMT
session state is not available in the BeginRequest handler
>> i want something that is specific to this request - specifically
>>
[quoted text clipped - 8 lines]
> concurrent requests per se - it is *available* to all requests, which is
> not the same thing...
Mark Rae [MVP] - 19 Sep 2007 17:43 GMT
> session state is not available in the BeginRequest handler
You're quite correct - sorry for the confusion...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net