I have a text file with list of words and i have generated list of URLs with these word:
word1 word2 word3 . . http://www.example.com/word1 http://www.example.com/word2 http://www.example.com/word3
i see these code to run URLs, but these open browsers or media player ones:
System.Diagnostics.Process.Start(URL);
or...
WebBrowser1.Navigate(URL);
i want to run these URLs and save again files that are loaded with name "word1.mp3,word2.mp3,..." without opening browser or saving files one by one. how can i do that in windows form with c#?