Control.OnInit Method
.NET Framework 2.0
Raises the Init event.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
When notified by this method, server controls must perform any initialization steps that are required to create and set up an instance. In this stage of the server control's lifecycle, the control's view state has yet to be populated. Additionally, you can not access other server controls when this method is called either, regardless of whether it is a child or parent to this control. Other server controls are not certain to be created and ready for access.
// Override the OnInit method to write text to the // containing page if the _text property is null. [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name="FullTrust")] protected override void OnInit(EventArgs e) { base.OnInit(e); if ( _text == null) _text = "Here is some default text."; }
// Override the OnInit method to write text to the
// containing page if the _text property is null.
protected void OnInit(EventArgs e)
{
super.OnInit(e);
if (get_Text() == null) {
set_Text("Here is some default text.");
}
} //OnInit
Community Additions
ADD
Show: