to read an online text file into an array of strings:

vb.net Code:
  1. Dim wc As New Net.WebClient
  2. Dim lines() As String = wc.DownloadString("url of text file").Split(New String() {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)