home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / setup3.cab / pak210-x86.exe / RCDATA / CABINET / repost.asp < prev    next >
Text File  |  1997-05-22  |  682b  |  29 lines

  1. <% Response.Buffer = TRUE %>
  2.  
  3. <HTML>
  4.  
  5. <TITLE>
  6. Repost Example
  7. </TITLE>
  8.  
  9. <BODY>
  10. <H1><CENTER>
  11.     Welcome <I><% Response.Write Request.ServerVariables("LOGON_USER") %></I><BR>
  12.     Here is your upload status:<BR>
  13. </CENTER></H1>
  14. <HR>
  15.  
  16. Destination: <B><% Response.Write Request.Form("TargetURL") %></B><BR>
  17. <HR><BR>
  18.  
  19. <%
  20.   For I = 1 To Request.Form("FileName").Count
  21.     Response.Write "Uploaded File: <B>" & Request.Form("FileName")(I) & Request.Form("FileExtention")(I) &"</B><BR>"
  22.     Response.Write "Physical Path: <B>" & Request.Form("FilePath")(I) & "</B><BR>"
  23.     Response.Write "Size: <B>" & Request.Form("FileSize")(I) & "</B><P>"
  24.   Next
  25. %>
  26.  
  27. </BODY>
  28. </HTML>
  29.