This documentation is archived and is not being maintained.

GenericWebPart::Title Property

Gets or sets the title of a GenericWebPart control.

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

public:
virtual property String^ Title {
	String^ get () override;
	void set (String^ value) override;
}
<asp:GenericWebPart Title="String" />

Property Value

Type: System::String
A string that represents the title of the part control. The default value is an empty string ("").

Implements

IWebPart::Title

The visible title text in a part control's title bar is set by the Title property.

If you do not supply a title for a control, the Web Parts control set automatically calculates a default string to use as a title. For more information, see DisplayTitle. Also, it is possible to provide a default subtitle that is appended to the title string. For details, see Subtitle.

This property overrides the base property so that you can access the property on the child control as if it were a true WebPart control.

You can set values for the property on your control in the declarative markup of a Web page, as well as programmatically. To provide a default value for the property whenever the control is used, you can implement the IWebPart interface.

The following code example demonstrates declarative and programmatic use of the Title property. The complete source code for the example is found in the Example section of the GenericWebPart overview topic.

The first part of the code example shows how the Title property is set declaratively on a server control within a WebPartZone control.

No code example is currently available or this language may not be supported.

The second part of the code example demonstrates how to access the property programmatically to display its value in a label.

No code example is currently available or this language may not be supported.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: