Control.Context Property
.NET Framework 2.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)
'Declaration Protected Friend Overridable ReadOnly Property Context As HttpContext 'Usage Dim value As HttpContext value = Me.Context
/** @property */ protected HttpContext get_Context ()
protected internal function get Context () : HttpContext
Not applicable.
Property Value
The 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.
<System.Security.Permissions.PermissionSetAttribute( _
System.Security.Permissions.SecurityAction.Demand, Name:="FullTrust")> _
Protected Overrides Function OnBubbleEvent(sender As Object, e As EventArgs) As Boolean
' 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
End Function 'OnBubbleEvent
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: