Most modern websites will interact with their users through forms. For example, you will need to have a form to allow users to place orders, send you a message, or track their orders.
How does a form work?
The form itself does not process the input. It only gathers input from the user and sends the information back to the webserver. To process information from a form, you will need to use server side programming such as CGI, Perl, ASP, PHP. For ASP.NET, HTML forms can be used, but there are better options to interact with users (ASP.NET topics are covered in their own series of tutorials). The following interactive process takes place when a user accesses a page that contains a form:
Form Element
A form can contain input elements of type such as text boxes, checkboxes, radio-buttons, submit buttons and more. A form can also contain select lists, text area, fieldset, legend, and label elements. A starting and ending