In a web page that I'm developing (using asp.net, but that is not relevant to this question I think) I have the necessity of making an HTTP GET request to an external website.
The two problems I have are these:
1) The request must be made client-side, because the website I'm making the request to restricts access to only certain IP addresses. My client will be in the range of accepted IPs, but my server will not, so the request must be made by the client using some kind of client-side script (Javascript or other, suggestions are welcome)
2) The request must include a cookie for the external site with a certain value that I must set, so the method/library/script that makes the request must allow me to set a cookie
I searched on SO and other sites but I'm having little luck, the few examples I found don't seem to work. Any idea in any client-side language is much appreciated.