How to Fetch a File from Remote Server to Local Server in ASP Classic?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nicebasic
    New Member
    • Aug 2010
    • 91

    How to Fetch a File from Remote Server to Local Server in ASP Classic?

    Hello everyone.

    I wish to do Remote File Fetching in ASP Classic. Below is a very easy, but effective PHP Script which shows what I mean:



    Code:
    <?php
    if ($_GET[xfer]) {
    if ($_POST[from] == "") {
    print "You forgot to enter a url.";
    } else {
    copy("$_POST[from]", "$_POST[to]");
    $size = round((filesize($_POST[to])/1000000), 3);
    print "transfer complete.<br>
    <a><a href=\"$_POST[from]\">$_POST[from]</a><br>
    <a><a href=\"$_POST[to]\">$_POST[to]</a> : $size MB";
    }
    } else {
    print "<form action=\"$PHP_SELF?xfer=true\" method=post>
    from(http://): <input name=from><br>
    to(filename): <input name=to><br>
    <input type=submit value=\"transload\">";
    }
    ?>

    I don't know how to copy a file from a Remote Server to my Local Host.

    Does anybody know how to accomplish this in ASP Classic?
Working...