ASP. NET Tutorial: Web Forms

Source: Internet
Author: User

All server controls must appear in the <form> label, and the <form> label must contain the runat = "server" attribute. The runat = "server" attribute indicates that the form must be processed on the server. It also indicates whether the control to be loaded can be accessed by the server script:

<form runat="server">...HTML + server controls</form>

Note: This form is always submitted to its own page. If you specify an action attribute, it is ignored. If you omit the method attribute, it is set to method = "post" by default ". At the same time, if you do not specify the name and id attributes, they are automatically allocated by ASP. NET.

Note: One. aspx can only contain one <form runat = "server"> control!

If you view. source code of the aspx page, and the form contained in it does not contain the name, method, action, or id attribute, you will see ASP. NET has added these attributes to the form. Similar to this:

<form name="_ctl0" method="post" action="page.aspx" id="_ctl0">...some code</form>
Submit Form

A form is usually submitted by clicking a button. The format of the Button Server Control in ASP. NET is as follows:

<asp:Button id="id" text="label" OnClick="sub" runat="server" />

The id attribute defines a unique name for the button, while the text attribute assigns a label to the button. The onClick event handle specifies a subroutine to be executed.

In the following example, we declare a button control in A. aspx file. You can run a subroutine with one mouse click to change the text on the button.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.