Hi!
You can use good old-fashioned html for your form, like this:
Code:
<form name="myform" action="contact.asp" method="post">
Then you make your little textboxes like this:
Code:
Name: <input type-"text" name="name"><br />
City: <input type="text" name="city"><br />
(same thing for e-mail except the name should be "email"). Now you make your dropdown box like this:
Code:
Enquiry: <select name="enquiry">
<option>Advertisement</option>
<option>Sponsorship</option>
<option>Other</option>
</select>
Last, you'll need a submit button and a reset button, like this:
Code:
<input type="submit" value="Submit">
<input type="reset" value="Cancel">
Now you're ready to make your asp file, called "contact.asp", but before you can begin to code it, you need to know exactly what you want to do with the data that is being entered into the form. Do you want to just display it on the screen, or do you have something else you want to do with it? For displaying it, you'll do something like:
Code:
Name: <%=Request.Form("name")%>
Do the same thing with city, email, and enquiry. Sorry for being long-winded. Hope this helps! :)