I want to read from a text file line by line and enter each line into a online box to see if it works.
For example:
bob
tom
rob
I want to read from that and enter it into, say my websites username or password box and enter and see if it works.
I believe you are suppose to send a request to your webhost or whatever but I do not know how.
foreach(string line in File.ReadAllLines("your text file"))
{
// send request here to your webhost
}
Please say if I am not clear.