home *** CD-ROM | disk | FTP | other *** search
/ Internet Pratica / IPRAT_01.iso / ASP / ASPFusion_Basic_Suite / examples / asp / advfile / act_delete.asp < prev    next >
Encoding:
Text File  |  2000-10-01  |  378 b   |  20 lines

  1. <html>
  2. <head>
  3.     <title>AdvFile Component</title>
  4. </head>
  5. <body>
  6. <%
  7. dim File
  8. set File = Server.CreateObject("AdvFile.File")
  9. File.Delete(Request.Form("Source"))
  10. if (File.IsError = 1) then
  11.     Response.Write File.ErrorReason & "<br>"
  12. else
  13.     Response.Write "Successfully deleted" & "<br>"
  14. end if
  15. set File = Nothing
  16. %>
  17. <a href="dsp_delete.htm">Back</a>
  18. </body>
  19. </html>
  20.