I want to call one web app does the following
on button click it will:
Create a HtppWebRequest to call another web app add a custom header, (The other web app needs that header, which is not part of a straight forward request via the browser.)
get the HttpWebReponse from that call, Write the response to the browser.
Seem like that should be simple, but all the examples I find seem to want to convert the response to a stream, with which nothing is done.
Can someone provide advice on how to do this?
Go to the complete details ...