在c#中使用http post发送文件

时间:2013-04-03 05:42:47

标签: c# .net http-post

我正在使用c#中的文件发布。我已经使用ajax从客户端发布了一个文件,其代码如下

<script type="text/javascript">
  function send() {
    var fd = new FormData();
    fd.append("fileToUpload", document.getElementById('filecontrol').files[0]);
    var xhr = new XMLHttpRequest();
    xhr.open("POST", "getFile.aspx");
    xhr.send(fd);
      }
</script>
<input type="file" id="filecontrol" />
<input type="button" onclick="getFile()" value="Upload File" />

在服务器端,我使用代码

检索该文件
 HttpPostedFile hpf = Request.Files[0];

我需要使用http post将此文件发送到另一个域。是否可以使用http post发送该hpf?

1 个答案:

答案 0 :(得分:1)

我认为你应该能够做到这一点。有很多方法可以做到这一点。这是一个链接Upload files with HTTPWebrequest (multipart/form-data)