Hi Bruce,
Perhaps I am using the wrong class / method for the application?
As per my post, I am using NetWebClient, POST()
The credit card company indicates an HTML form, method = "POST"
With values passed to their system.
ALSO in the same instance a page on their server should be opened where the user should fill in the credit card information.
The CC company accepts all the CC details on their SSL site, and processes the payment.
So currently I am posting the values to their URL and receive a response.
The response indicates credit card number missing, etc, but I am not suppose to pass the credit card details to them, the user should fill these in, on the CC site.
The example they provided:
<form method="POST" action="URL">
<input type = "hidden" name="p1" value = "a">
<input type = "hidden" name="p2" value = "b">
etc. etc. etc.
</form>
Where "p1" is the variable on their system and "a" is the value of the variable.
Would this HTML page normally pass the values and open the destination page?
So to answer your question; the reply does not say anything about redirection,
But I have to open a page on their server and at the same time pass values to them.
I am not sure what I am missing?