Control.Context Property
.NET Framework 3.0
Gets the HttpContext object associated with the server control for the current Web request.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
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 boolean OnBubbleEvent(Object sender, EventArgs e)
{
// Use the Context property to write text to the TraceContext object
// associated with the current request.
get_Context().get_Trace().Write("The ParentControl's OnBubbleEvent"
+ " method is called.");
get_Context().get_Trace().Write(("The Source of event is: "
+ sender.ToString()));
return true ;
} //OnBubbleEvent
Community Additions
ADD
Show: