First thing you will need to do is specify the scripting language, content type and endcoding type in a page element. Language will be visual Basic, content Type will be text/html and ecoding will be UTF-8
Next you will want to specify the doctype, this will tell the browser exactly what type of HTML you are using in the page. We'll be using the following DTD HTML doc type.
Now we need to import the System.Web.Mail asp.net namespace for use with our basic contact form
Now that the page basics are setup we need to write some script that will handle the information browsers will provide when visiting your page. First you need to write the server side script call. Then include a runat="server" verable which will tell the server to run it locally on the server side so the browser cannot view the information. This is done to prevent souce view bots from gaining email address information in your contact form.
Server side code
then you need to end the runat=server code
add standard HTML elements
Now the form, form fields and content
You may want to add some validation to the above code in order to prevent bots from filling out your contact form.
Finally closing of page HTML elements