I have a the following int the Page.Load
Sub page load(
if Not Page.IsPostBack the
function_a(Context.item("Object")
Cache.Insert("MyDataSet1", Context.item("Object") , Nothing, Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(10))
else 'event on the pag
function_b( Cache("MyDataSet1") ) 'event
end if
end Su
When the page is postback dua an event on the page the cache passed in this case is from another user Session (?). Please can anybody helpme with this. Iam really lost
Thank you very much
Ariel
---
Alvin Bruney [MVP] - 03 Nov 2004 23:41 GMT
no need to be lost. the cahce object is global in scope. every user has
access to it. If you need session specific information, store it in session
instead of cache

Signature
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
>
> I have a the following int the Page.Load:
[quoted text clipped - 24 lines]
>
> ---