.NET Framework Class Library
HtmlInputSubmit Class

Allows programmatic access to the HTML <input type= submit> element on the server.

Namespace:  System.Web.UI.HtmlControls
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic (Declaration)
<AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level := AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level := AspNetHostingPermissionLevel.Minimal)> _
Public Class HtmlInputSubmit _
    Inherits HtmlInputButton _
    Implements IPostBackEventHandler
Visual Basic (Usage)
Dim instance As HtmlInputSubmit
C#
[AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
public class HtmlInputSubmit : HtmlInputButton, 
    IPostBackEventHandler
Visual C++
[AspNetHostingPermissionAttribute(SecurityAction::InheritanceDemand, Level = AspNetHostingPermissionLevel::Minimal)]
[AspNetHostingPermissionAttribute(SecurityAction::LinkDemand, Level = AspNetHostingPermissionLevel::Minimal)]
public ref class HtmlInputSubmit : public HtmlInputButton, 
    IPostBackEventHandler
JScript
public class HtmlInputSubmit extends HtmlInputButton implements IPostBackEventHandler
ASP.NET
<asp:HtmlInputSubmit />
Remarks

The HtmlInputSubmit class is derived from the HtmlInputButton class and is used to create a button control on a Web page that submits a form. The HtmlInputSubmit control is often used with the HtmlInputReset control, which resets form controls to their initial values.

For a list of initial property values for an instance of HtmlInputSubmit, see the HtmlInputSubmit constructor.

TopicLocation
How to: Add HTML Server Controls to a Web Page Using ASP.NET SyntaxBuilding ASP .NET Web Applications
How to: Add HTML Server Controls to a Web Page Using ASP.NET SyntaxBuilding ASP .NET Web Applications
How to: Add HTML Server Controls to a Web Page Using ASP.NET SyntaxBuilding ASP .NET Web Applications in Visual Studio
How to: Add HTML Server Controls to a Web Page Using ASP.NET SyntaxBuilding ASP .NET Web Applications in Visual Studio
How to: Set HTML Server Control Properties ProgrammaticallyBuilding ASP .NET Web Applications
How to: Set HTML Server Control Properties ProgrammaticallyBuilding ASP .NET Web Applications
How to: Set HTML Server Control Properties ProgrammaticallyBuilding ASP .NET Web Applications in Visual Studio
How to: Set HTML Server Control Properties ProgrammaticallyBuilding ASP .NET Web Applications in Visual Studio
Examples

The following code example demonstrates how to use the <input type=submit> HTML control declaratively on a Web Forms page.

Visual Basic
<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html  >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="Form1" runat="server">
        &nbsp;&nbsp;

        <p></p><div>Username</div> <br />
        <input type="text" runat="server" />

        <p></p><div>Password</div> <br />
        <input type="password" runat="server" />

        <p></p><input type="submit" runat="server" value="Submit" />

    </form>
  </body>
</html>
C#
<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html  >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="Form1" runat="server">
        &nbsp;&nbsp;

        <p></p><div>Username</div> <br />
        <input type="text" runat="server" />

        <p></p><div>Password</div> <br />
        <input type="password" runat="server" />

        <p></p><input type="submit" runat="server" value="Submit" />

    </form>
  </body>
</html>

The following code example demonstrates how to add the same HTML control programmatically during a call to the Page_Load method.

Visual Basic
<%@ 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">

  Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)

    If (IsPostBack) Then
      ' Add code to process the Login.
    End If

  End Sub

  Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs)

    Dim userText As HtmlInputText = New HtmlInputText
    userText.MaxLength = 20
    Placeholder1.Controls.Add(userText)

    Dim passwordText As HtmlInputPassword = New HtmlInputPassword
    passwordText.MaxLength = 20
    Placeholder2.Controls.Add(passwordText)

    Dim submitButton As HtmlInputSubmit = New HtmlInputSubmit
    submitButton.Value = "Submit"
    Placeholder3.Controls.Add(submitButton)

  End Sub
</script>

<html  >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="Form1" runat="server">

      <table cellpadding="2">
        <tr>
        <td>User Name
            <asp:placeholder
                runat="server"
                id="Placeholder1" />
        </td></tr>
        <tr>
        <td>Password
            <asp:placeholder
                runat="server"
                id="Placeholder2" />
        </td></tr>
        <tr><td><asp:placeholder
                runat="server"
                id="Placeholder3" />
        </td></tr>
      </table>
    </form>
  </body>
</html>
C#
<%@ 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">

  protected void page_load(object sender, EventArgs e)
  {
    if (IsPostBack)
    {
      // Add code to process the Login.
    }
  }

  protected void Page_Init(object sender, EventArgs e)
  {
    HtmlInputText userText = new HtmlInputText();
    userText.MaxLength = 20;
    Placeholder1.Controls.Add(userText);

    HtmlInputPassword passwordText = new HtmlInputPassword();
    passwordText.MaxLength = 20;
    Placeholder2.Controls.Add(passwordText);

    HtmlInputSubmit submitButton = new HtmlInputSubmit();
    submitButton.Value = "Submit";
    Placeholder3.Controls.Add(submitButton);
  }
</script>

<html  >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">

      <table cellpadding="2">
        <tr>
        <td>User Name
            <asp:placeholder
                runat="server"
                id="Placeholder1" />
        </td></tr>
        <tr>
        <td>Password
            <asp:placeholder
                runat="server"
                id="Placeholder2" />
        </td></tr>
        <tr><td><asp:placeholder
                runat="server"
                id="Placeholder3" />
        </td></tr>
      </table>
    </form>
  </body>
</html>
.NET Framework Security

Inheritance Hierarchy

System..::.Object
  System.Web.UI..::.Control
    System.Web.UI.HtmlControls..::.HtmlControl
      System.Web.UI.HtmlControls..::.HtmlInputControl
        System.Web.UI.HtmlControls..::.HtmlInputButton
          System.Web.UI.HtmlControls..::.HtmlInputSubmit
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Tags :


Page view tracker