How to create a Contact Form

Create an asp.net web page with textboxes and validation controls. Add a submit button. Program the button using the code below.  View the interactive form below to see the end results.
NOTE: You will need to edit the web.config file to include your e-mail settings like this:

<system.net>
      <mailsettings> 
             <smtp> 
                     <network host="127.0.0.1"
                                    password="12345"
                                    port="8025"
                                    username="you@yourdomain.com" 
                     </network>
              </smtp>
     </mailsettings>
<system.net>