How could I use C# to download the contents of a URL, and store the text in a string, without having to save the file to the hard drive?
use this Code Simply
var r= string.Empty; using (var web = new System.Net.WebClient()) r= web.DownloadString("http://TEST.COM");