VB.NET Username Grabber Help
Well i have my httpWrapper and all and and when i ask it to go between the source code it gives me an error or it posts the html
If wrapper.Post("http://www.gaiaonline.com/profiles/", Username) Then
Dim UserID As String = wrapper.Between(strHTML, "<title>Viewing", "#039;s profile")
Label5.Text = "Username: " & UserID
End If

Dim UNG As String
UNG = wrapper.Between([get], ("http://www.gaiaonline.com/profiles/", "/", Username, "/")
Label5.Text = "Username:" + UNG[/get][/get]
rth. Function parameters are separated by commas, so in your first code you're trying to go to:http://www.gaiaonline.com/profiles/and not a specific profile. If you want to go to a specific profile, you want to concatenate the URI and the username:If wrapper.Post("http://www.gaiaonline.com/profiles/" + Username) Then