DEXTUpload, ABCUpload 중에 하나를 이용하여 파일을 업로드 하는 예제입니다.
아래 예제는 www 폴더 아래에 upload 폴더가 있다는 가정하에 작성되었습니다.
업로드 폴더에 대한 쓰기권한은 고객님께서 직접 설정할 수 없사오니 [고객서비스
센터]의 ‘1:1 문의 게시판으로 신청해 주시기 바랍니다.
DEXTUpload 를 사용하시는 경우 upload.html 과 DEXTUpload.asp 로 테스트 하실 수
있습니다.
ABCUpload를 사용하신다면 upload.html 에서 action=”DEXTUpload.asp” 부분을
ABCUpload로 바꾸어 테스트 하시기 바랍니다.
[upload.html]
<html>
<body>
<form method=”post” action=”DEXTUpload.asp” enctype=”multipart/form-data”>
<input type=”file” name=”file1″><br>
<input type=”submit” name=”submit” value=”submit”>
</form>
<body>
</html>
[DEXTUpload.asp]
<%
Set uploadform = Server.CreateObject(“DEXT.FileUpload”)
uploadform.DefaultPath = “F:home\아이디\www\upload”
uploadform.Save ‘uploadform(“file1”).Save 라고 해도 됨.
Set uploadform = Nothing ‘객체는 항상 사용되지않는 즉시 Nothing 처리해줘야 부하가 적습니다.
Response.Write “Success!!”
%>
자세한 사용법: http://www.dextupload.com/product/product_dext04.asp
[ABCUpload.asp]
<%
Set theForm = Server.CreateObject(“ABCUpload4.XForm”)
theForm.CodePage = 949
Set theField = theForm(“file1”)(1)
theForm.Overwrite = True
If theField.FileExists Then
theField.Save “upload/” & theField.SafeFileName
End If
Set theForm = Nothing ‘객체는 항상 사용되지않는 즉시 Nothing 처리해줘야 부하가 적습니다.
Response.Write “Success!!”
%>
자세한 사용법: http://www.websupergoo.com/helpupload/source/
- HOME
- IIS