In my code I have this
which works fine, but does not display as I would like. So, I tried adding the response.write and the PrintErrors(objResponse) into the strResponse variable
which gives me the error
where line 75 is strResponse = strResponse & PrintErrors(objResponse)
Now, it is late and I am very tired. Anybody see what I am missing?
wb
Code:
strResponse="We are very sorry for this inconvenience, but your electronic donation did not go thru. However, we greatly appreciate your desire to contribute to our ministry here at Youth Conference Ministries. Please contact us at (423)624-2495 and we will handle your donation with a personal touch."
Response.Write "The operation failed with the following errors:<br>" & vbCrLf
PrintErrors(objResponse)
which works fine, but does not display as I would like. So, I tried adding the response.write and the PrintErrors(objResponse) into the strResponse variable
Code:
strResponse="We are very sorry for this inconvenience, but your electronic donation did not go thru. However, we greatly appreciate your desire to contribute to our ministry here at Youth Conference Ministries. Please contact us at (423)624-2495 and we will handle your donation with a personal touch. The operation failed with the following errors:<br>"
strResponse = strResponse & PrintErrors(objResponse)
which gives me the error
Code:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'PrintErrors'
/secure/give/sendarbtoan.asp, line 75
where line 75 is strResponse = strResponse & PrintErrors(objResponse)
Now, it is late and I am very tired. Anybody see what I am missing?
wb