olisemalis
MIS
Hi,
Using ASP, I need to decode a base64 string. I can do it using ADODB.Stream or the open method of VB (I think ASP doesn´t have it, al least for a binary write like this:
'Save the byte array into a file opened in binary mode
Open "c:\teste.txt" For Binary As #1
Put #1, 1, btArr
Close #1
)
However, some PC don´t have the latest versions of mdac, and thus the ADODB.STREAM is not available.
Is there any other way of doing such conversion?
Thank you
Using ASP, I need to decode a base64 string. I can do it using ADODB.Stream or the open method of VB (I think ASP doesn´t have it, al least for a binary write like this:
'Save the byte array into a file opened in binary mode
Open "c:\teste.txt" For Binary As #1
Put #1, 1, btArr
Close #1
)
However, some PC don´t have the latest versions of mdac, and thus the ADODB.STREAM is not available.
Is there any other way of doing such conversion?
Thank you