 |
Medlem
|
|
Reg.datum: Dec 2003
Inlägg: 213
|
|
Medlem
Reg.datum: Dec 2003
Inlägg: 213
|
Har problem när jag vill byta namn på filen jag laddar upp.
Så här ser min kod ut.
' Variables
' *********
Dim mySmartUpload
Dim FileType
Dim Image
FileType = Right(Request.Form("file"),3)
Image = Request.Querystring("id") & "." & FileType
' Object creation
' ***************
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
' Upload
' ******
mySmartUpload.Upload
' Save the files with their original names in a virtual path of the web server
' ************************************************** **************************
'intCount = mySmartUpload.Save("/images/drinkar")
' sample with a physical path
mySmartUpload.SaveAs("D:/kunder/sponsrat/krogliv.com/crop/images/" & Image & "")
response.redirect "crop.asp?image=drink" & Image & ""
|