PasswordRecovery.SubmitButtonText Property
Assembly: System.Web (in system.web.dll)
[LocalizableAttribute(true)] public: virtual property String^ SubmitButtonText { String^ get (); void set (String^ value); }
/** @property */ public String get_SubmitButtonText () /** @property */ public void set_SubmitButtonText (String value)
public function get SubmitButtonText () : String public function set SubmitButtonText (value : String)
Not applicable.
Property Value
The text of the button. The default is "Submit".The SubmitButtonText property contains the text displayed for the PasswordRecovery control's Submit button.
How the SubmitButtonText property is used depends on the setting of the SubmitButtonType property. For details, see SubmitButtonType.
When you use templates to define the appearance of the PasswordRecovery control, the SubmitButtonText property has no effect.
The default text for the property is localized based on the server's locale setting.
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 SubmitButtonText property using declarative syntax. This code example is part of a larger example provided for the SubmitButtonType property.
The following code example sets the SubmitButtonText property programmatically. This code example is part of a larger example provided for the SubmitButtonType property.