I put breakpoints in the ContactForm.ascx.
I filled every field in the contact form. ie. Contact.aspx
I clicked send and debugged the ContactForm.ascx.
I hope this helps. It's a little above my head.
What is confusing is the SignUp.aspx form works fine and sends email response.
Their both forms send email responses.
Please advise.
Read Below for more detail.
Larry
It fails at :
code
Dim mySmtpClient As SmtpClient = New SmtpClient()
mySmtpClient.Send(myMessage)
MessageSentPara.Visible = True
FormTable.Visible = False
System.Threading.Thread.Sleep(5000)
Catch
Message.Text = "An error occurred while sending your e-mail. Please try again."
/code
The exception snapshot says : {"The specified string is not in the form required for an e-mail address."}
When you debug internet explorer the error msg says: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
web.config email code is:
code
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="
[email protected]">
<network host="mail.optonline.net" password="wa2jsb" userName="lstew452"/>
</smtp>
</mailSettings>
</system.net>
/code