Advertisement
Nodrogc

CF2

Sep 18th, 2021
1,648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <head><title>Specify File to Upload</title></head>
  2. <body>
  3. <h2>Specify File to Upload</h2>
  4. <!--- the action attribute is the name of the action page --->
  5. <form action="uploadfileaction.cfm"
  6. enctype="multipart/form-data"
  7. method="post">
  8. <p>Enter the complete path and filename of the file to upload:
  9. <input type="file"
  10. name="FiletoUpload"
  11. size="45">
  12. </p>
  13. <input type="submit"
  14. value="Upload">
  15. </form>
  16. </body>
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement