Login::TitleText Property

 

Gets or sets the title of the Login control.

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

public:
property String^ TitleText {
	virtual String^ get();
	virtual void set(String^ value);
}

Property Value

Type: System::String^

The title of the Login control. The default is "Login".

The TitleText property specifies the title displayed at the top of the Login control.

The default text for the control is localized based on the server's current locale.

The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.

The following code example sets the TitleText property.

System_CAPS_security Security Note

This example contains a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.

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

.NET Framework
Available since 2.0
Return to top
Show: