Hi all i just joined this group. and i will start bothering you by question :D
As i know HttpContext Object is an object which contains most of the common details about an HttpRequest and we can ask about the current HttpRequest using the following code
HttpContext context = HttpContext.Current;
does that mean always in the application only one Request will be serving at a time ??
if the application can serve multiple Requests, what prevents the confliction in the following code
HttpContext context = HttpContext.Current;
context.Items.Add("UserID", "11");
Server.Transfer("AnotherForm.aspx");
and in AnotherForm.aspx
string UserID = HttpContext.Current.Items["UserID"];
what guarantee that this Application is not serving a new Request.