UploadString (Post Method) in VB.NET doesn't work
Hi, I am trying to post simple data to some site, in this example to a php file on my local server. My VB.NET Code: Dim W As New Net.WebClient Dim A As String = "" W.Encoding = System.Text.Encoding.UTF8 Dim URL As String = "http://localhost/test/p.php" A = W.UploadString(URL, "bla=test") MsgBox(A) and here the p.php: <? print_r($_P...