working with httpwebrequest and response classes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using the httpwebrequest and response classes to post payment
transactions to my credit card processor. I believe I have the working code
to post the data but I have had no luck figuring out how to receive the
response back from the processor.

The problem is I need to receive the response on a different page than I
posted from.

If you know of any good articles on the subject please post them.

Thanks, Justin.
 
Justin said:
I am using the httpwebrequest and response classes to post payment
transactions to my credit card processor. I believe I have the working
code
to post the data but I have had no luck figuring out how to receive the
response back from the processor.

The problem is I need to receive the response on a different page than I
posted from.

You must retrieve the response on the same page you post from. But you can
save it somewhere (eg session or a database), and retrieve it on a later
request.

David
 
Back
Top