Please Helpme, i have this error, when I send the contact form :
My Visual Basic code:
<%
mail_to = "jrclurita@gmail.com"
Dim error
error = 0
For Each f In Request.Form
If Request.Form(f) = "" Then
error = 1
End If
Next
If error=1 Then
response.redirect "error.html"
Else
Dim f, emsg, mail_to, r, o, c, other
fline = "_______________________________________________________________________"& vbNewLine
hline = vbNewLine & "_____________________________________"& vbNewLine
emsg = ""
For Each f In Request.Form
If mid(f,1,1)<>"S" = True Then 'do not save if input name starts with S
emsg = emsg & f & " = " & Trim(Request.Form(f)) & hline
End If
Next
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
objNewMail.From = Request("Email Address")
objNewMail.Subject = "Message from contact page (version: 1.0)"
objNewMail.To = mail_to
objNewMail.Body = emsg & fline
objNewMail.Send
Set objNewMail = Nothing
response.redirect "thankyou.html"
End if
%>
And my html code of my form:
<html>
<head>
<title>Formulario Contacto</title>
</head>
<body>
<form method="POST" action="contactusprocess.asp">
<table>
<tr>
<td>Nombres y Apellidos:</td>
<td><input name="Name" size="25" maxlength="50"></td>
</tr>
<tr>
<td>Email:</td>
<td><input name="Email Address" size="25" maxlength="50"></td>
</tr>
<tr>
<td>Telefono o Celular:</td>
<td><input name="Telephone No" size="25" maxlength="50"> </td>
</tr>
<tr>
<td valign="top">Mensaje:</td>
<td><textarea cols="24" name="Message" rows="6"></textarea> </td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<center>
<p>
<input type="submit" value="Enviar" name="Submit">
</p>
</center>
</div>
<div align="center"><center>
</td>
</tr>
</table>
</form>
</body>
</html>
Mi Server is Godaddy Windows IIS
My web.config File:
<?xml version="1.0" encoding="utf-8"?>
<!--
Para obtener más información sobre cómo configurar la aplicación de ASP.NET, visite
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<customErrors mode="Off" />
<pages validateRequest="false" />
<globalization culture="es-PE" uiCulture="es-PE" />
<trust level="Low" />
</system.web>
</configuration>
Please, two days I can not find a solution.