WebZone.HasFooter Property

Note: This property is new in the .NET Framework version 2.0.

Gets a value indicating whether a zone has a footer area.

Namespace: System.Web.UI.WebControls.WebParts
Assembly: System.Web (in system.web.dll)

protected:
virtual property bool HasFooter {
	bool get ();
}
/** @property */
protected boolean get_HasFooter ()

protected function get HasFooter () : boolean

Property Value

true if the zone has a footer area; otherwise, false. The default value is true.

The HasFooter property is primarily used by control developers who are creating custom zones. It exists as a flag so that the Web Parts control set renders a footer only when appropriate for a zone. For example, the HasFooter property overrides this property and returns false, so that a footer is not rendered for a WebPartZone control.

Tool zones (zones that derive indirectly from the WebZone class by means of the ToolZone class, such as EditorZone and CatalogZone) must have footers so that, for example, they can render common user interface (UI) verbs with buttons such as OK, Apply, and Cancel at the bottom of the zone. Because the HasFooter property is true by default, tool zones do not need to override the property.

Notes to Inheritors If you are creating a custom tool zone that derives from ToolZone, you can override the RenderFooter method and provide rendering for your zone's footer.

Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: