因此,制定方案,由你们提供一些信息。 一部分信息需要一段案文,我们谈论的是100+特性。 我发现的是,数据大到哪里才获得数据。 这里我使用的是:
public void HttpPost(string URI, string Parameters)
{
// this is what we are sending
string post_data = Parameters;
// this is where we will send it
string uri = URI;
// create a request
HttpWebRequest request = (HttpWebRequest) WebRequest.Create(uri);
request.KeepAlive = false;
request.ProtocolVersion = HttpVersion.Version10;
request.Method = "POST";
// turn our request string into a byte stream
byte[] postBytes = Encoding.ASCII.GetBytes(post_data);
// this is important - make sure you specify type this way
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = postBytes.Length;
Stream requestStream = request.GetRequestStream();
// now send it
requestStream.Write(postBytes, 0, postBytes.Length);
requestStream.Close();
}
当时我这样说:
HttpPost(url, "data=" + accum + "&pass=HRS");
accum是我寄送的大量数据。 如果我寄送少量数据,这一方法就行之有效。 但是,当它占据巨头时,它就赢得了输电。 我的网站上有超过100+特性的请设员额请求的网页吗?
Thanks.