<%@ LANGUAGE="VBSCRIPT" %>
<html>
<head>
<title>Upload File Results</title>
</head>
<body>
<p>Thank you for uploading your file.
<% Set Upload = Server.CreateObject("Persits.Upload.1") Upload.Save
"c:\upload" %>
Files:
<%
For Each File in Upload.Files Response.Write File.Name & "="
& File.Path & " (" & File.Size & ")
" Next %>
Other items:
<% For Each Item in Upload.Form Response.Write Item.Name
& "=" & Item.Value & "BR" Next %>
< /body>
</html>
|