How to Post Data to a different domain/url
-
I am trying to figure out how to send data and my customer to my banks web site to enroll for paying their bills online. The post string that I am suppose to use is: https://banks_web_site.com/enroll?id=12345&name=Customer&accountid=98765&backurl=https://my_web_site.com/return.aspx The bank will return to me the following info and my customer (so they can continue the payment process) via https://my_web_site.com/return.aspx?return=0&enroll_id=765431 I will be using VB. I'm having trouble trying to get this to work, any help would be appreciated. Another thing that has me stumped is if I do what the bank calls a payment search, I send to them with no return url: https://banks_web_site.com/pay_search?id=12345&&enroll_id=765432&days=2 They will return the following: 0::: 7777:1:1123123123:VISA:987554 8888:1:1231238744:AMEX:876454 Unlike the first example, the returned info is not qualified by a query string name. How do you receive this data ?