Have your form submit to this page naming it whatever you want keeping in mind that no data is being saved to a database (which is what you would really want) unless you don't want to.
email page
********************************
<%@LANGUAGE="VBSCRIPT"%>
<%
dim mystring
mystring = " server/site/page.asp"
%>
<html>
<body>
<%
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail"
HTML = HTML & "<HTML>"
HTML = HTML & "<HEAD>"
HTML = HTML & "<TITLE>My email Form</TITLE>"
HTML = HTML & "</HEAD>"
HTML = HTML & "<BODY LEFTMARGIN=""0"" TOPMARGIN=""0"" bgcolor=""White"">"
HTML = HTML & "<TABLE cellpadding=""4"">"
HTML = HTML & "<TR><TD>"
HTML = HTML & "<br>"
HTML = HTML & " & "<font color='##003399'>" &
Request.form("message"
& "</font>" & "<br>"
HTML = HTML & "</FONT></TD></TR></TABLE><BR><BR>"
HTML = HTML & "<br>"
HTML = HTML & "</FONT></TH></TR><br><br>"
HTML = HTML & "</BODY>"
HTML = HTML & "</HTML>"
objMail.From =
request.form("from"
objMail.Subject =
request.form("subject"
objMail.BodyFormat = 0
objMail.MailFormat = 0
objMail.To =
request.form("to"
objMail.cc =
request.form("cc"
objMail.Body = HTML
objMail.Send
%>
<a name="ovhref" href="<%=mystring%>"></a>
<script language="JavaScript">
ovhref.click()
</script>
********************************
email page
P.S. What I'm doing with the redirect (mystring) is sending the user to a thankyou.asp page and on that page you can redirect them back to your default.asp page if you'd liked.
I haven't lost my mind, it's backedup on CD somewhere