Welcome to my ASP Code Website

ASP Contact Box Code



You never want to reveal your email address to spammers! By having a contact box, you get in information safely from your visitors.

First, you need the actual contact form that your visitors will see. This code looks like this:

<form action="contact_p.asp" method="POST">

Your email address: <BR>
<input name="email" type="text" size="35" maxlength="35"><BR>
Please make sure this is valid.
<P>

Section of Website: <BR>
<select name="topic">
<option value='-'>Select a Topic</option>
<option value='help'>ASP Help</option>
<option value='ebook'>Ebook Assistance</option>
<option value='contract'>Contract Job</option>
<option value='other'>Other</option>
</select>
<P>

Comment or Question:<BR>
<TEXTAREA rows=5 cols=60 name="tip"></TEXTAREA><BR>
<P>

<input type="submit" name="submit tip" value="submit note">
</form>



Step 2: Contact Form Processing

ASP Free Sample Code Directory