simple question: I have an file online (txt). How to read it and check if its there? (C#.net 2.0)
A little bit easier way:
string fileContent = new WebClient().DownloadString("yourURL");