Http web request issues HELP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • johnlim20088
    New Member
    • Jan 2007
    • 74

    Http web request issues HELP

    Hi,

    Currenty I have a window based NET application running and have a following function to http post some data.

    string url = xxxx.aspx? parameter1=&par ameter2=&..etc

    WebRequest request = WebRequest.Crea te(url);
    request.Timeout =150000;
    WebResponse response = request.GetResp onse();
    StreamReader stream = new StreamReader(re sponse.GetRespo nseStream());
    Contents = stream.ReadToEn d();

    PROBLEM:
    My problem is that is ALWAYS operation timeout...

    CAN someone help me on THIS?
Working...