Control.Context Property
.NET Framework (current version)
Gets the HttpContext object associated with the server control for the current Web request.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Web.HttpContextThe specified HttpContext object associated with the current request.
This property gives you access to the HttpContext object for the current Web request. The object provides properties that access the Application, Session, Request, Response and other objects that contain information about the current HTTP request. It also provides methods that allow you to obtain configuration information and set or clear errors for the request.
protected override bool OnBubbleEvent(object sender, EventArgs e) { // Use the Context property to write text to the TraceContext object // associated with the current request. Context.Trace.Write("The ParentControl's OnBubbleEvent method is called."); Context.Trace.Write("The Source of event is: " + sender.ToString()); return true; }
.NET Framework
Available since 1.1
Available since 1.1
Show: