Re: How to access actual uploaded file when using TempDirectory?

  •  04-12-2010, 12:58 AM

    Re: How to access actual uploaded file when using TempDirectory?

    Ok, this is what I did:
     
    Dim mvcfile   
    Set mvcfile = uploader.GetUploadedFile(Request.Form("storiesUpLoader")) 
    Response.Write("file name: " & mvcfile.FileName) 
    Response.Write("<br />file guid: " & mvcfile.FileGuid)   
    Response.Write("<br />file path: " & mvcfile.FilePath)  

    I was able to get all the info. I am still not sure how I could get or extract the actual uploaded file from the resource file (example: file.jpg), but maybe thats something I have to figure out on my own, and has nothing to do with your uploader.
     
    Thanks
    Kal 
                                                        
                                              
View Complete Thread