Scrapbook/개발 및 프로그래밍
base64.dll + 자동테이블 명세서 출력 + Copy Handler
가을이짱짱
2007. 5. 10. 15:09
반응형
1. Base64로 인코딩해서 넘길 필요하가 있을 때,
디코딩하고 싶을 때
3. 파일카피 시 부하를 최소화 시키면 안정적으로 카피 핸들러
디코딩하고 싶을 때
* 인코딩
Set objEncode = Server.CreateObject("Base64Lib.Base64")
strEncodeData = objEncode.Encode(strContents)
Set objEncode = Nothing
Response.Write strEncodeData
* 디코딩
Set objDecode = Server.CreateObject("Base64Lib.Base64")
strDecodeData = objDecode.Decode(strContents)
Set objDecode = Nothing
Response.Write strDecodeData
2. 테이블 내역서 명세표 작성이 짜증날 때
ASP로 출력해주는 ~~
3. 파일카피 시 부하를 최소화 시키면 안정적으로 카피 핸들러
반응형