ASP Uploader Class Reference |
|
AspUploadFile.Delete?Method?
Deletes this instance.
- <%
-
- If Request.Form("myuploader")&""<>"" Then
-
- Dim list,i
-
-
- list=Split(Request.Form("myuploader"),"/")
-
- For i=0 to Ubound(list)
- Dim mvcfile
-
-
- Set mvcfile=uploader.GetUploadedFile(list(i))
-
-
- mvcfile.Delete()
- Next
- End If
-
- %>