我真的不明白像HttpContext.Current
这样的类对于整个Web应用程序是可见的(对于单个请求),而不是“静态”。
.NET为该课程做了哪种处理?
答案 0 :(得分:3)
在类HttpContext中,Current是静态属性
public static HttpContext Current { get; set; }
更多信息请参阅: http://msdn.microsoft.com/en-us/library/system.web.httpcontext.current.aspx
答案 1 :(得分:1)