ASP.NET 中的用户控制上下文和 http 上下文是否相同?

Are the user control context and http context the same in ASP.NET?

我的 ASP.NET 应用程序中有一个用户控件。 Control.Context object in the user control and the global HttpContext.Current 是否指向同一个对象?我可以用一个代替另一个吗?

是的,return HttpContext(页面、控件、控制器等)的所有访问器return 与为当前请求设置的对象完全相同 - 与 HttpContext.Current returns.