ClassicASP [DEXTUpload] MaxFileLen 속성이 V2.48과 달라진 점
페이지 정보
본문
"MaxFileLen은 DefaultPath를 호출하기
전에 설정해야 합니다. 그렇지 않으면 설정 값이 반영되지 않습니다. error '80004005'" V2.48에서는 파일을 전부
업로드 한 뒤에 MaxFileLen 속성을 이용하여 파일 크기를 제한하였습니다. 이로인해 사이즈가 큰 파일을 업로드 할 때,
서버의 많은 부담을 지게
됩니다. DEXTUpload Professional에서는 파일 크기 제한 시점을 전부 업로드 한 후가 아니라,
MaxFileLen에 설정한 크기만큼 업로드를 초과하게 되면, 예외를 발생 시킵니다. 따라서, DefaultPath를 호출하기
전에 설정해야 합니다.
본 문서의 정보는 다음의 제품에 적용됩니다.
DEXTUpload Professional 3.0
실제사례)
기존 문제발생코드 <<== 기존의 적용방식
Set oDU = Server.CreateObject("Dext.FileUpload")
Set oImageHandler = New ImageHandler
oImageHandler.ImageFolder = "attachedImages"
다음과 같이 수정합니다.
Set oDU = Server.CreateObject("Dext.FileUpload")
oDU.defaultPath = Server.MapPath("\groupware\notice\uploadedFiles\")
Set oImageHandler = New ImageHandler
oImageHandler.ImageFolder = Server.MapPath("\groupware\notice\attachedImages\")
참고사이트
http://dextsolution.tistory.com/132
DEXTUpload Professional 3.0
실제사례)
기존 문제발생코드 <<== 기존의 적용방식
Set oDU = Server.CreateObject("Dext.FileUpload")
Set oImageHandler = New ImageHandler
oImageHandler.ImageFolder = "attachedImages"
다음과 같이 수정합니다.
Set oDU = Server.CreateObject("Dext.FileUpload")
oDU.defaultPath = Server.MapPath("\groupware\notice\uploadedFiles\")
Set oImageHandler = New ImageHandler
oImageHandler.ImageFolder = Server.MapPath("\groupware\notice\attachedImages\")
참고사이트
http://dextsolution.tistory.com/132
댓글목록
등록된 댓글이 없습니다.