Hmmm, with the redirect .. okay then use a redir page instead .. less stress on the server anyway ..

In your code ..

Code:
If Err <> 0 Then
  	Response.Write "Database Error!<br>"
	Response.Write Err.Description
	Response.End
Else 
	Response.Redirect "redir.asp"
End If
Then the Redir.asp (or .htm doesnt matter) page

Code:
<html>
<head>
<meta http-equiv="refresh" content="3;url=mailto.asp">
<title>Thank you</title>
</head>
<body>
<center><h3>Thank You For your Feedback!</h3></center>
</body>
</html>