Hi, we have set up an ASP page for some of our clients to post parameters to a web page which then returns some data. Simply:
xml.Open "POST", "
http://somewebpage", False
xml.Send "data1=xx1&data2=xx2"
One of our clients has said they can't do a POST within an iframe and they need to specify GET. How do we do this? My understanding is that you can't send any parameters using GET.
Start Free Trial