C# 클래스 BlogEngine.Core.Web.Controls.BlogBasePage

All pages in the custom themes as well as pre-defined pages in the root must inherit from this class.
The class is responsible for assigning the theme to all derived pages as well as adding RSS, RSD, tracking script and a whole lot more.
상속: System.Web.UI.Page
파일 보기 프로젝트 열기: rasmuskl/ReSharperCourse 1 사용 예제들

공개 메소드들

메소드 설명
AddGenericLink ( string relation, string title, string href ) : void

Adds the generic link to the header.

AddGenericLink ( string type, string relation, string title, string href ) : void

Adds the generic link to the header.

보호된 메소드들

메소드 설명
AddDefaultLanguages ( ) : void

Adds the default stylesheet language

AddMetaContentType ( ) : void

Adds the content-type meta tag to the header.

AddMetaTag ( string name, string value ) : void

Add a meta tag to the page's header.

OnError ( EventArgs e ) : void

Raises the event.

OnLoad ( EventArgs e ) : void

Raises the E:System.Web.UI.Control.Load event. Adds links and javascript to the HTML header tag.

OnPreInit ( EventArgs e ) : void

Raises the E:System.Web.UI.Page.PreInit event at the beginning of page initialization. Assignes the selected theme to the pages.

OnPreRenderComplete ( EventArgs e ) : void

Raises the event after the event and before the page is rendered.

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

Initializes the object and calls on the child controls of the to render.

메소드 상세

AddDefaultLanguages() 보호된 메소드

Adds the default stylesheet language
protected AddDefaultLanguages ( ) : void
리턴 void

AddGenericLink() 공개 메소드

Adds the generic link to the header.
public AddGenericLink ( string relation, string title, string href ) : void
relation string /// The relation string. ///
title string /// The title string. ///
href string /// The href string. ///
리턴 void

AddGenericLink() 공개 메소드

Adds the generic link to the header.
public AddGenericLink ( string type, string relation, string title, string href ) : void
type string /// The type string. ///
relation string /// The relation string. ///
title string /// The title string. ///
href string /// The href string. ///
리턴 void

AddMetaContentType() 보호된 메소드

Adds the content-type meta tag to the header.
protected AddMetaContentType ( ) : void
리턴 void

AddMetaTag() 보호된 메소드

Add a meta tag to the page's header.
protected AddMetaTag ( string name, string value ) : void
name string /// The tag name. ///
value string /// The tag value. ///
리턴 void

OnError() 보호된 메소드

Raises the event.
protected OnError ( EventArgs e ) : void
e System.EventArgs /// An that contains the event data. ///
리턴 void

OnLoad() 보호된 메소드

Raises the E:System.Web.UI.Control.Load event. Adds links and javascript to the HTML header tag.
protected OnLoad ( EventArgs e ) : void
e System.EventArgs The object that contains the event data.
리턴 void

OnPreInit() 보호된 메소드

Raises the E:System.Web.UI.Page.PreInit event at the beginning of page initialization. Assignes the selected theme to the pages.
protected OnPreInit ( EventArgs e ) : void
e System.EventArgs An that contains the event data.
리턴 void

OnPreRenderComplete() 보호된 메소드

Raises the event after the event and before the page is rendered.
protected OnPreRenderComplete ( EventArgs e ) : void
e System.EventArgs /// An that contains the event data. ///
리턴 void

Render() 보호된 메소드

Initializes the object and calls on the child controls of the to render.
protected Render ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter /// The that receives the page content. ///
리턴 void