PasswordRecovery.SubmitButtonType Property
Gets or sets the type of Submit button to use when rendering the PasswordRecovery control.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Web.UI.WebControls.ButtonTypeOne of the ButtonType values. The default is Button.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The SubmitButtonType property is not set to a valid System.Web.UI.WebControls.ButtonType value. |
The SubmitButtonType property determines what kind of button is used to submit entries to the PasswordRecovery control.
The following table lists the button type used for each value of the SubmitButtonType property.
SubmitButtonType value | Button used |
|---|---|
A standard HTML button. The SubmitButtonText property provides the text for the button. | |
The image at the location stored in the SubmitButtonImageUrl property. The SubmitButtonText property provides the alternate text for the image. | |
An HTML link. The SubmitButtonText property provides the link text. |
When you use templates to define the appearance of the PasswordRecovery control, the SubmitButtonType property has no effect.
The following code example shows the appearance of the Submit buttons on the PasswordRecovery control for different settings of the SubmitButtonType property.
<%@ page language="C#"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> void DropDownList1_SelectedIndexChanged(object Sender, EventArgs e) { if (DropDownList1.SelectedValue == "Button") { PasswordRecovery1.SubmitButtonType = ButtonType.Button; PasswordRecovery1.SubmitButtonText = "Enter User Name"; } if (DropDownList1.SelectedValue == "Image") { PasswordRecovery1.SubmitButtonType = ButtonType.Image; PasswordRecovery1.SubmitButtonImageUrl = "userNameSubmit.png"; PasswordRecovery1.SubmitButtonText = "Enter User Name Image"; } if (DropDownList1.SelectedValue == "Link") { PasswordRecovery1.SubmitButtonType = ButtonType.Link; PasswordRecovery1.SubmitButtonText = "Enter User Name"; } } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>ASP.NET Example</title> </head> <body> <form id="Form1" runat="server"> <table border="1"> <tbody> <tr> <td> <asp:passwordrecovery id="PasswordRecovery1" runat="server" submitbuttonimageurl="userNameSubmit.png" submitbuttontext="Enter User Name"> <submitbuttonstyle font-names="Comic Sans MS" forecolor="White" backcolor="#00C000"> </submitbuttonstyle> </asp:passwordrecovery> </td> <td align="center"> Choose a button type:<br /> <asp:dropdownlist id="DropDownList1" runat="server" onselectedindexchanged="DropDownList1_SelectedIndexChanged" autopostback="true"> <asp:listitem value="Button">Button</asp:listitem> <asp:listitem value="Image">Image</asp:listitem> <asp:listitem value="Link">Link</asp:listitem> </asp:dropdownlist> </td> </tr> </tbody> </table> </form> </body> </html>
Available since 2.0