Login::LoginButtonText Property

 

Gets or sets the text for the Login control's login button.

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

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

Property Value

Type: System::String^

The text used for the Login control's login button. The default is "Login".

The LoginButtonText property contains the text displayed for the Login control's login button. Depending on the value of the LoginButtonType property, the LoginButtonText property can appear as text on a button, as text displayed as an alternative to an image in browsers that do not render images, or as the text of a link. The following table describes how the different LoginButtonType values affect the LoginButtonText property.

LoginButtonType setting

How the LoginButtonText property is used.

Button

As the button's Text property.

Image

As alternative text for the image.

Link

As link text.

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 shows how the text in the LoginButtonText property is affected by the value of the LoginButtonType 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: