answersLogoWhite

0

What is an aspnet webform?

User Avatar

Anonymous

13y ago
Updated: 8/16/2019

All server controls must appear within a <form> tag, and the <form> tag must contain the runat="server" attribute. The runat="server" attribute indicates that the form should be processed on the server.

It also indicates that the enclosed controls can be accessed by server scripts:

<form runat="server">

</form>

User Avatar

Wiki User

13y ago

What else can I help you with?