Whenever I use downloadstring like this:
Dim client As Net.WebClient = New Net.WebClient()
Dim reply As String = client.DownloadString("http://abstract.ezyro.com/version.php")
It always says "This site requires javascript to work", even though there is nothing javascript related. Version.php is as follows:
<?php
echo "4.2.0-2017/03/02";
?>
Any help?