home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>AdvFile Component</title>
- </head>
- <body>
- <%
- dim File
- set File = Server.CreateObject("AdvFile.File")
- File.Delete(Request.Form("Source"))
- if (File.IsError = 1) then
- Response.Write File.ErrorReason & "<br>"
- else
- Response.Write "Successfully deleted" & "<br>"
- end if
- set File = Nothing
- %>
- <a href="dsp_delete.htm">Back</a>
- </body>
- </html>
-