Help for this page

Select Code to Download


  1. or download this
    <form name="upload" action="filemngt_upload_file.pl" method="post" enc
    +type="multipart/form-data" onSubmit="showProgress()">
    Enter the name of the file to uploaded:
    <input type="file" name="uploadfile" size="30">
    <input type="submit" value="Upload File">
    </form>
    
  2. or download this
    <SCRIPT LANGUAGE="JavaScript">
    function showProgress() {
    ...
    var newWindow = open("http://localhost/cgi-bin/test.pl?uploadfile=" + 
    +uploadfilename, "secondWindow", "scrollbars,resizable,width=250,heigh
    +t=150,left=720");
    }
    </script>