0

ここにいくつかのコードがあります:

var client = new WebClient();
client.BaseAddress = "http://localhost/";
client.Headers["Content-type"] = "application/x-www-form-urlencoded";
client.Proxy = null;
// The server gets the data
var responseStr = client.UploadString(url, data); 
...
// The server gets an empty post data
responseStr = client.UploadString(url, data); 

Webclient は使い捨てのはずですか?

4

1 に答える 1

0

うーん、あなたはこれを試すことができないかもしれません:

WebClient client = new WebClient();
client.BaseAddress = "http://localhost/something.php";
于 2012-07-10T06:05:34.237 に答える