Illegal Characters in Path Error When Downloading CSV File
问题 I need download a CSV file and then read it. Here is my code: tickerValue = "goog" Dim strURL As String = "http://ichart.yahoo.com/table.csv?s=" & tickerValue Dim strBuffer As String = RequestWebData(strURL) Using streamReader = New StreamReader(strBuffer) Using reader = New CsvReader(streamReader) I keep getting this error: An unhandled exception of type 'System.ArgumentException' occurred in mscorlib.dll Additional information: Illegal characters in path. What am I doing wrong? Additional