I have a web page that has a form that is requesting information from a user (Request.asp). I am new with ASP and was just kind of brought in on this project. But I have looked over the code over and over again and cannot find the error. The error is when the user comes to the point to submit the information by clicking the submit button, it brings you to this:[but is suppose to bring you to RequestConfirm.asp]
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'
[Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression.
/ResponseTeam/RequestConfirm.asp, line 255
Is it something in here:
Set Mail = Server.CreateObject("Persits.MailSender"
Mail.Host = "mail.mail.org" ' Specify a valid SMTP server
Mail.From = "ResponseTeamRequest@techcouncilnwpa.org" ' Specify sender's address
Mail.AddAddress rs3("Email"
Mail.Subject = "Broadband Response Team - Assistance Request"
Mail.Body = strSubject2
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
Let me know what you think or explain that error I am getting. Thanks in advanced.
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'
[Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression.
/ResponseTeam/RequestConfirm.asp, line 255
Is it something in here:
Set Mail = Server.CreateObject("Persits.MailSender"
Mail.Host = "mail.mail.org" ' Specify a valid SMTP server
Mail.From = "ResponseTeamRequest@techcouncilnwpa.org" ' Specify sender's address
Mail.AddAddress rs3("Email"
Mail.Subject = "Broadband Response Team - Assistance Request"
Mail.Body = strSubject2
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
Let me know what you think or explain that error I am getting. Thanks in advanced.