Control.Disposed Event
.NET Framework 3.0
Occurs when a server control is released from memory, which is the last stage of the server control lifecycle when an ASP.NET page is requested.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual event EventHandler^ Disposed { void add (EventHandler^ value) sealed; void remove (EventHandler^ value) sealed; }
/** @event */ public final void add_Disposed (EventHandler value) /** @event */ public final void remove_Disposed (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
Resources that require significant processor time, such as database connections, should be released with this event.
| Topic | Location |
|---|---|
| How to: Create Event Handlers in ASP.NET Web Pages | Building ASP .NET Web Applications |
| How to: Create Event Handlers in ASP.NET Web Pages | Building ASP .NET Web Applications |
Community Additions
ADD
Show: