0

我正在设计一个网站,我将从我的 VB.net 程序上传内容。我还设置了这些东西,以便您可以从其中一个页面上传内容:

    <form enctype="multipart/form-data" action="upload.php" method="post">
        <input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
        Choose a file to upload: <input name="uploaded_file" type="file" />
        <input type="submit" value="Upload" />
    </form> 

有什么方法可以使用相同的方法上传,但使用我的 VB.net 程序?我正在使用 VB.net,所以所有 .net 示例和解决方案都是可以接受的 :)

编辑:

这是 upload.php 的副本:

<?php

        //Check that we have a file
        if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) {
          //Check if the file is JPEG image and it's size is less than 350Kb
          $filename = basename($_FILES['uploaded_file']['name']);
          $ext = substr($filename, strrpos($filename, '.') + 1);
          if (($ext == "jpg") && ($_FILES["uploaded_file"]["type"] == "image/jpeg") && 
            ($_FILES["uploaded_file"]["size"] < 350000)) {
            //Determine the path to which we want to save this file
              $newname = dirname(__FILE__).'/uploads/'.$filename;
              //Check if the file with the same name is already exists on the server
              if (!file_exists($newname)) {
                //Attempt to move the uploaded file to it's new place
                if ((move_uploaded_file($_FILES['uploaded_file']['tmp_name'],$newname))) {
                   echo "It's done! The file has been saved as: ".$newname;
                } else {
                   echo "Error: A problem occurred during file upload!<br /><br /><a href='index.php'>Try Uploading Again</a>";
                }
              } else {
                 echo "Error: File ".$_FILES["uploaded_file"]["name"]." already exists!  That's our fault.  Please be patient while we fix it :)<br /><br /><a href='index.php'>Try Uploading Again</a>";
              }
          } else {
             echo "Error: Only .jpg images under 350Kb are accepted for upload<br /><br /><a href='index.php'>Try Uploading Something Smaller</a>";
          }
        } else {
         echo "Error: No file uploaded";
        }
        ?>
4

1 回答 1

0

正如评论中所说,你需要System.Net.WebClient。您的问题可能是由于没有正确的标题引起的

.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)")
.Headers.Add(System.Net.HttpRequestHeader.ContentType, "application/x-www-form-urlencoded")
.Headers.Add(System.Net.HttpRequestHeader.ContentLanguage, "en-gb")

或者没有正确处理cookies: 它可以完成!:WebClient:处理cookies

于 2012-05-17T07:07:42.123 回答