This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
Response.CharSet = "utf-8" | |
Class Base64 | |
Private Base64Chars | |
Private Sub Class_Initialize() | |
Base64Chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" & _ | |
"abcdefghijklmnopqrstuvwxyz" & _ | |
"0123456789" & _ | |
"+/" |