HtmlInputSubmit Constructor (String)
.NET Framework 2.0
Note: This constructor is new in the .NET Framework version 2.0.
Initializes a new instance of the HtmlInputSubmit class using the specified type.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates how to programmatically add HtmlInputText, HtmlInputPassword, and HtmlInputSubmit controls to a Web Forms page to create a simple login screen. This example demonstrates how you can pass various values for the type parameter, which overrides the intrinsic type of the HTML control.
<%@ Page Language="VJ#" %>
<!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, System.EventArgs e)
{
if (get_IsPostBack())
{
// Add code to process the Login.
}
}
protected void Page_Init(Object sender, EventArgs e)
{
// Pass "password" to make the HtmlInput control render a
// password input type.
HtmlInputPassword passwordText = new HtmlInputPassword();
passwordText.set_MaxLength(20);
Placeholder1.get_Controls().Add(passwordText);
// Pass "submit" to make the HtmlInput control render a
// form submit button.
HtmlInputSubmit submitButton = new HtmlInputSubmit("submit");
submitButton.set_Value("Log On to System");
Placeholder2.get_Controls().Add(submitButton);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<form id="Form1" runat="server">
<table cellpadding="2">
<tr>
<td>Password
<asp:placeholder
runat="server"
id="Placeholder1" />
</td></tr>
<tr><td><asp:placeholder
runat="server"
id="Placeholder2" />
</td></tr>
</table>
</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.
Community Additions
ADD
Show: