I've searched for two days for a way that when you press a button (In this case button15) that when its pressed, it will retrieve a .txt from online. Basically I need to turn this:
DirectoryInfo di = new DirectoryInfo("C:\\");
FileInfo[] rgFiles = di.GetFiles("*.dll");
foreach (FileInfo fi in rgFiles)
{
listBox3.Items.Add(fi.Name);
}
So instead of getting it from the Directory, it gets it from online. Any way of doing this?