Login.PasswordLabelText Property
Assembly: System.Web (in system.web.dll)
'Declaration <LocalizableAttribute(True)> _ Public Overridable Property PasswordLabelText As String 'Usage Dim instance As Login Dim value As String value = instance.PasswordLabelText instance.PasswordLabelText = value
/** @property */ public String get_PasswordLabelText () /** @property */ public void set_PasswordLabelText (String value)
public function get PasswordLabelText () : String public function set PasswordLabelText (value : String)
Property Value
The text of the label for the Password text box. The default is "Password:".The PasswordLabelText property contains the label text for the Password text box.
The TextLayout property defines where the field label is positioned.
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 PasswordLabelText property to "User Password:".
<%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <SCRIPT runat="server"> Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Login1.UserNameLabelText = "User ID:" Login1.PasswordLabelText = "User Password:" End Sub </SCRIPT> <HTML> <BODY> <FORM runat="server"> <asp:Login id="Login1" runat="server" UserNameLabelText="User ID:" PasswordLabelText="User Password:"> </asp:Login> </FORM> </BODY> </HTML>
Windows 98, Windows 2000 SP4, 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.