asunpraise
MIS
I want to upload users' files and save them into uploaded\userfolder, there may be 100 folders for each different individual, will this work? (I use session id as each folder's name. Since the whole page didn't work, I wonder this is right)
Dim pathToFile, idpath
idpath = Session("id"
pathToFile = Server.mapPath("idpath/"
& "\" & fileName
' Uploading file data
Dim fileUploaded
fileUploaded = load.saveToFile ("file", pathToFile)
Dim pathToFile, idpath
idpath = Session("id"
pathToFile = Server.mapPath("idpath/"
' Uploading file data
Dim fileUploaded
fileUploaded = load.saveToFile ("file", pathToFile)