In my web application I'm using \[code\]System.Web.HttpContext.Current\[/code\] and it represents the current hit context, I was wondering how its accessible from everywhere until i noticed that its a \[code\]static\[/code\] member ! While its a static member how it keeps its value while if two requests received in almost the same time.like the following :\[code\]#Req1----> | set the value of the static field to req1#Req2----> | set the value of the static field to req2#Req1 | use that static its supposed to be req2 while its req1\[/code\]did I miss-understand something or there is a trick in it or what ?