프론트 프로그램
Tabs Upload 3 업로드, 다운로드 소스
수유산장
2017. 7. 7. 15:22
tabs upload 예제 소스
Set Upload = Server.CreateObject("TABS.Upload")
Upload.Start "C:\저장할폴더"
Upload("업로드파일input명").Save, True
filename = Upload("업로드파일input명").FileName
filename 디비 저장.
tabs upload 다운로드 소스 예제
Set Download = Server.CreateObject("TABS.Download")
Download.FilePath = "물리적파일경로"
Download.FileName = "다운로드될때저장될파일이름"
Download.TransferFile true
set Download = Nothing