I'm currently using
Dim objRequest, post_response
Set objRequest = Server.CreateObject("Microsoft.XMLHTTP")
objRequest.open "POST", post_url, false
objRequest.send post_string
post_response = objRequest.responseText
Set objRequest = nothing
to submit to authroze.net
I'm recieving an error today with
objRequest.send post_string but getting an error with it. does anyone know if the correct or new createobject to use.
03-09-2018 03:37 PM