C# Webclient funktioniuert nicht

  • Hey,


    Wieso werden hier keine Posteinträge übertragen?


    WebClient wclient = new WebClient();
    NameValueCollection postData = new NameValueCollection();
    postData.Add("name", textBox1.Text);
    postData.Add("password", groupBox1.Text);
    byte[] responseArray = wclient.UploadValues("http://client.nico-wiss.de/php_checkacc.php", "POST", postData);
    MessageBox.Show(Encoding.ASCII.GetString(responseArray), "Upload abgeschlossen!");


    Sprache ist C#