I'm trying to look through the source I do not need a integer but it is trying to convert to integer..
I may be over thinking this but here is my code
Dim sourceString As String = New System.Net.WebClient().DownloadString("website.html")
Dim value() As String = Split(sourceString, "<option value=", " >")
'Conversion from string " >" to type 'Integer' is not valid.'
not looking for some one to re-write my code but looking for what I am doing wrong and explain if possible.
Thank you