ASP Uploader Class Reference |
|
AspUploadFile.FileName Property
Gets the name of the file.
- <%
-
- If Request.Form("myuploader")&""<>"" Then
-
- Dim list,i
-
-
- list=Split(Request.Form("myuploader"),"/")
-
- For i=0 to Ubound(list)
- if i>0 then
- Response.Write("<hr/>")
- end if
- Dim mvcfile
-
-
- Set mvcfile=uploader.GetUploadedFile(list(i))
-
- Response.Write("Uploaded File:")
-
- Response.Write("<br/>FileName: ")
- Response.Write(mvcfile.FileName)
- Next
- End If
-
- %>