Using thread in aspx-page making a webrequest
- by Mike Ribeiro
Hi,
I kind of new to the hole threading stuff so bare with me here..
I have a aspx-page that takes some input and makes a reqest:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(string.Format("{0}?{1}", strPostPath, strPostData));
request.Method = "GET";
request.Timeout = 5000; // set 5 sec. timeout
request.ProtocolVersion =…