C# Class EPiUtilities.WebControls.BaseClasses.WebControlBase

Base control for web controls.
Inheritance: System.Web.UI.WebControls.WebControl
Afficher le fichier Open project: JohannesOstensjo/EPiUtilities

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
DataBind ( bool raiseOnDataBinding ) : void

Override to mark control as databound.

OnPreRender ( System e ) : void

Override which performs AutoBind.

Method Details

DataBind() public méthode

Override to mark control as databound.
public DataBind ( ) : void
Résultat void

DataBind() protected méthode

Override to mark control as databound.
protected DataBind ( bool raiseOnDataBinding ) : void
raiseOnDataBinding bool
Résultat void

OnPreRender() protected méthode

Override which performs AutoBind.
protected OnPreRender ( System e ) : void
e System
Résultat void

RenderBeginTag() public méthode

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
Résultat void

RenderEndTag() public méthode

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
Résultat void