2
I want the VB to check if the username entered already exists in a text collection hosted on a site. I want something like this:
Dim Findstring = IO.File.ReadAllText("C:\Program Files (x86)\EasyPHP-12.1\www\server\users.txt")
Dim Lookfor As String = FlatTextBox1.Text
if Findstring.Contains(Lookfor) Then
ErroUserExist.ShowDialog()
Only instead of searching for txt on my pc, I want it to search on a website. Thanks in advance.
Wow, thanks friend, you helped a lot.
– Joao Victor Menom