msdn描述:
获取可用于在 HTTP 请求过程中在 IHttpModule 和 IHttpHandler 之间组织和共享数据的键值集合
HttpContext.Current.Items.Add(CacheKey, object)。无法保存状态值?
在A.aspx中。使用
HttpContext.Current.Items.Add(CacheKey, sellinfo)保存状态值。
然后转到
b.aspx
HttpContext.Current.Items(CacheKey)永远为nothing.不值是什么原因?
CacheKey="cachekey"
[解决方法]
how did you "转"? HttpContext.Current is only valid for the current request, so if you are using Server.Transfer, it should be ok, but if you are using Response.Redirect, then no
获取可用于在 HTTP 请求过程中在 IHttpModule 和 IHttpHandler 之间组织和共享数据的键值集合
HttpContext.Current.Items.Add(CacheKey, object)。无法保存状态值?
在A.aspx中。使用
HttpContext.Current.Items.Add(CacheKey, sellinfo)保存状态值。
然后转到
b.aspx
HttpContext.Current.Items(CacheKey)永远为nothing.不值是什么原因?
CacheKey="cachekey"
[解决方法]
1楼 saucer (思归) 回复于 2005-01-18 04:18:13 得分 0
how did you "转"? HttpContext.Current is only valid for the current request, so if you are using Server.Transfer, it should be ok, but if you are using Response.Redirect, then no