'DLL'에 해당되는 글 1건

  1. 2007/05/10 base64.dll + 자동테이블 명세서 출력 + Copy Handler
1. Base64로 인코딩해서 넘길 필요하가 있을 때,
디코딩하고 싶을 때


* 인코딩
        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. 파일카피 시 부하를 최소화 시키면 안정적으로 카피 핸들러


'Scrapbook > 개발관련' 카테고리의 다른 글

[linux] du, df  (0) 2008/05/13
터미널서비스 원격 세션 종료법  (0) 2007/11/28
base64.dll + 자동테이블 명세서 출력 + Copy Handler  (0) 2007/05/10
MD5 알고리즘  (0) 2007/04/20
ASP에서 엑셀로 결과값 출력하기  (0) 2007/04/17
페이지 내 로딩중 설정  (0) 2007/01/20
Posted by 가을이짱짱
TAG , ,

트랙백 주소 : http://www.couplestyle.com/trackback/502 관련글 쓰기

댓글을 달아 주세요