Hi
How can I receive http post response (coming from other application) and display on aspx page .
see the below code
WebClient WClient = new WebClient();
WClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
string PostData = "";
for (int i = 0; i < Request.Form.AllKeys.Length; i++)
{
string key = Request.Form.AllKeys[i];
string value = Request.Form[i];
which event I should put this code ( onload ) or etc please advice
Go to the complete details ...