-
[2008] Logins HELP!
Anyway i want lets just say its TextBox1 and TextBox2
TextBox1 = Username Box
TextBox2 = Password Box
I want the program to download a .txt file off the internet e.g www.website.com/users.txt
www.website.com/pass.txt
then i want the program to read them file and check if the username matches one on www.website.com/users.txt
then i want the program to read them file and check if the password matches one on www.website.com/pass.txt
and if they both match then
-Do My Code
But dont have a clue how to do it
Please help
Thanks
-
Re: [2008] Logins HELP!
Use a webclient to download the files to your local PC (either as a file or as a String), then do the comparison. If you don't know how to use the WebClient class, google for it.