私は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ポストを使用してそのhpfを送信することは可能ですか?.