simple question: I have an file online (txt). How to read it and check if its there? (C#.net 2.0)
Look at System.Net.WebClient, the docs even have an example of retrieving the file.
System.Net.WebClient
But testing if the file exists implies asking for the file and catching the exception if it's not there.