C# Class EPiUtilities.WebControls.BaseClasses.WebControlBase

Base control for web controls.
Inheritance: System.Web.UI.WebControls.WebControl
Datei anzeigen Open project: JohannesOstensjo/EPiUtilities

Public Methods

Method Description
DataBind ( ) : void

Override to mark control as databound.

RenderBeginTag ( System.Web.UI.HtmlTextWriter writer ) : void

We don't want any other markup than our own from templates.

RenderEndTag ( System.Web.UI.HtmlTextWriter writer ) : void

We don't want any other markup than our own from templates.

Protected Methods

Method Description
DataBind ( bool raiseOnDataBinding ) : void

Override to mark control as databound.

OnPreRender ( System e ) : void

Override which performs AutoBind.

Method Details

DataBind() public method

Override to mark control as databound.
public DataBind ( ) : void
return void

DataBind() protected method

Override to mark control as databound.
protected DataBind ( bool raiseOnDataBinding ) : void
raiseOnDataBinding bool
return void

OnPreRender() protected method

Override which performs AutoBind.
protected OnPreRender ( System e ) : void
e System
return void

RenderBeginTag() public method

We don't want any other markup than our own from templates.
public RenderBeginTag ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter
return void

RenderEndTag() public method

We don't want any other markup than our own from templates.
public RenderEndTag ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter
return void