Imar-
This works now thanks to you. I am really not a programmer but I agree in that I need to learn
more about this.
I will research on the unspecified error message. However, I need one last bit of help from you.
It seems like the Chr(13) which is supposed to be a carriage return does not work on my email
confirmation.
My code is as follows:
strBody="The following information was submitted:" & Chr(13) & Chr(13)
If Trim(Request.Form("Contact_FullName"))<>"" Then
strBody = strBody & "Requestor's Name: " & Request.Form("Contact_FullName") & Chr(13)
End If
If Trim(Request.Form("Site"))<>"" Then
strBody = strBody & "Site: " & Request.Form("Site") & Chr(13)
End If
And this goes on to the last field.
My email confirmation looks like this:
The following information was submitted:Requestor's Name: testingSite: testing
Requestor's Email:
[email protected]riority: LowResearch needed by: 02/20/2004
Prospect Name: testingPast Giving: YesResearch needed for: Preliminary Evaluation
Prospect's Moves Management Status: IdentificationInformation you would like to obtain: testing
Thank you for submitting your data.
I know this shouldve had a carriage return but somehow it is not working.
ONE LAST HELP PLEASE!!!