The string is coming from this url, http://www.elixirwd.com.au/test.php
The Username and Password for this url is,
Username:user
Password: password
Now simply downloading the data using the WebClient classes DownloadString( ) method the below code will not work.
It will not detect a newline character. Why?
Thanks Alex.
The Username and Password for this url is,
Username:user
Password: password
Now simply downloading the data using the WebClient classes DownloadString( ) method the below code will not work.
Code:
If FileContents.Contains(ControlChars.NewLine) Then MessageBox.Show("Has newline!") End If
Thanks Alex.
Comment