Scope of HttpContext.Current.Items

.net, asp.net, c#

Solution

Yes, the context would still be valid. It would become invalid or break if you use Response.Redirect().

See article The HttpContext Items Collection

Problem

Are the `HttpContext.Current.Items` lost when a `Server.Transfer();` occurs? If so what is the best way for me to send information to another page without going through the Session?

Original source