解决方案 »

  1.   

    http://www.cnblogs.com/mingfei200169/articles/437957.html
      

  2.   

    Content-Type: multipart/form-data; boundary=---------------------------7de3532101d2
    Accept-Encoding: gzip, deflate
    Host: 192.168.99.1
    Content-Length: 18088212
    Connection: Keep-Alive
    Cache-Control: no-cache-----------------------------7de3532101d2
    是什么意思喃???怎么在程序中体现
      

  3.   

    webclient有上传文件方法啊,参照下面的示例            WebClient client = new WebClient();
                byte[] data = client.UploadFile("http://www.xxx.com/upload.php", @"d:\test.html");
                Console.WriteLine(Encoding.Default.GetString(data));
      

  4.   


    是这样的。这可以上传一块 multipart/form-data 数据,可以被asp.net等等标准的web服务程序读取。
      

  5.   


    你可以学习一下 rfc 2183 协议。