home *** CD-ROM | disk | FTP | other *** search
/ Internet Pratica / IPRAT_01.iso / ASP / ASPFusion_Basic_Suite / examples / cf / advfile / act_delete.cfm < prev    next >
Encoding:
ColdFusion Markup Language  |  2001-03-14  |  380 b   |  16 lines

  1. <html>
  2. <head>
  3.     <title>AdvFile Component</title>
  4. </head>
  5. <body>
  6. <cfobject class="AdvFile.File" action="CREATE" name="AdvFile">
  7. <cfset temp = AdvFile.Delete(#Form.Source#)>
  8. <cfif #AdvFile.IsError# Eq 1>
  9.     <cfoutput>#AdvFile.ErrorReason#</cfoutput> <br>
  10. <cfelse>
  11.     <cfoutput>Successfully deleted</cfoutput> <br>
  12. </cfif>
  13. <a href="dsp_delete.htm">Back</a>
  14. </body>
  15. </html>
  16.