ASP Uploader Class Reference

AspUploadFile.FilePath Property

Gets the file path of the file.

  1. <%   
  2.   
  3. If Request.Form("myuploader")&""<>"" Then  
  4.   
  5.     Dim list,i   
  6.        
  7.     'Gets the GUID List of the files based on uploader name    
  8.     list=Split(Request.Form("myuploader"),"/")   
  9.   
  10.     For i=0 to Ubound(list)   
  11.         if i>0 then   
  12.             Response.Write("<hr/>")   
  13.         end if   
  14.         Dim mvcfile   
  15.            
  16.         'get the uploaded file based on GUID   
  17.         Set mvcfile=uploader.GetUploadedFile(list(i))   
  18.   
  19.         Response.Write("Uploaded File:")   
  20.          'Gets the file path of the file.   
  21.         Response.Write("<br/>FilePath: ")   
  22.         Response.Write(mvcfile.FilePath)   
  23.     Next  
  24. End If  
  25.   
  26. %>