Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Base64 decoding

Status
Not open for further replies.
Jul 29, 2005
136
PT
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
 
You are running this on the web server or on the client pc? Surely you can check the MDAC level on the server?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top