PasswordRecovery.SubmitButtonType 属性

定义

获取或设置呈现 PasswordRecovery 控件时使用的“提交”按钮的类型。

public virtual System.Web.UI.WebControls.ButtonType SubmitButtonType { get; set; }

属性值

ButtonType 值之一。 默认值为 Button

例外

SubmitButtonType 属性未设置为有效的 ButtonType 值。

示例

下面的代码示例演示 属性的不同设置SubmitButtonTypePasswordRecovery 控件上“提交”按钮的外观。

<%@ 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;
      // <Snippet4>
      PasswordRecovery1.SubmitButtonText = "Enter User Name";
      // </Snippet4>
    }
  
    if (DropDownList1.SelectedValue == "Image")
    {
      PasswordRecovery1.SubmitButtonType = ButtonType.Image;
      // <Snippet3>
      PasswordRecovery1.SubmitButtonImageUrl = "userNameSubmit.png";
      // </Snippet3>
      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>

注解

属性 SubmitButtonType 确定用于将条目提交到控件的 PasswordRecovery 按钮类型。

下表列出了用于属性的每个值的 SubmitButtonType 按钮类型。

SubmitButtonType 值 使用的按钮
Button 标准 HTML 按钮。 属性 SubmitButtonText 提供按钮的文本。
Image 存储在 属性中 SubmitButtonImageUrl 的位置的图像。 属性 SubmitButtonText 提供图像的备用文本。
Link HTML 链接。 属性 SubmitButtonText 提供链接文本。

使用模板定义控件的外观 PasswordRecovery 时, SubmitButtonType 属性不起作用。

适用于

产品 版本
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

另请参阅