Added: May/05/2004 at 6:35am | IP Logged
|
|
|
??? WHY DOES THIS CODE NOT WORK ???
Warum funktioniert das nicht bei mir ?
++++++++++ upload.htm ++++++++++ <html>
<head>
</head>
<body>
<form action="save.asp" method="post" enctype="multipart/form-data"> <table> <tr> <td>Datei:</td> <td><input type="file" name="UPLOAD_FILE" maxlength="250" size="80"></td> </tr> <tr> <td></td> <td><input type="submit" value="Upload"></td> </tr> </table> </form>
</body>
</html>
++++++++++ save.asp ++++++++++ <% Set FS = Server.CreateObject("Scripting.FileSystemObject")
response.write Request.Form("UPLOAD_FILE")
FS.CopyFile Request.Form("UPLOAD_FILE"), "\\eagcldaten\daten\public\Doku-Sammlung\", True %> <BR> Ihre Datei nach <a href=file://eagcldaten/daten/public/Doku-Sammlung> \\eagcldaten\daten\public\Doku-Sammlung</a> übertragen <BR>
|