blah blah blah is here! blah blah » Close

1
votes
2 answers

C# HttpWebRequest timeout

foamy
2135

Hi all, I made this method to automatically check if a website is up or not. It runs every minute from a Console app and for the first few minutes it seems to work. After that I start getting "The operation has timed out" error ...

0
votes
1 answers

c#: Progress bar with httpwebrequest

How can i use progress bar with a code like this... it gets some xml from a php. [code] try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.mywebsite.com/p/getAll.php"); ...

Feedback