ASP Uploader Class Reference |
|
AspUploadFile.MoveTo?Method?
Moves the uploaded file to a new location.
- <%
-
- 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.MoveTo("/uploads")
-
- Next
- End If
-
- %>