Hi, HttpPostRequest with Files only in VB2008 is easy:
Using wc As New System.Net.WebClient()
wc.UploadFile("http://server.de/exemple.php", "c:\test.png")
End Using
But I want POST Text + Files in one POST (username, password, file). But, how to?