ControlAdapter.OnPreRender Method
.NET Framework 2.0
Overrides the OnPreRender method for the associated control.
Namespace: System.Web.UI.Adapters
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
If there is an adapter attached to a Control object and the OnPreRender method is overridden, the override method is called instead of the Control.OnPreRender method.
Override the OnPreRender method to perform target-specific processing in the PreRender stage of the control lifecycle. Typically, these are functions that immediately precede rendering of the control output.
Notes to Inheritors: When you inherit from the ControlAdapter class and the adapter overrides the OnPreRender method, the adapter must call the corresponding base class method, which in turn calls the Control.OnPreRender method. If the Control.OnPreRender method is not called, the Control.PreRender event will not be raised.Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: