Click to See Complete Forum and Search --> : base64


Michael
January 16th, 1999, 08:49 AM
Hi,

how can I convert a string (or a binary file) to base64 ?


-Michael

Michael
January 16th, 1999, 08:49 AM
Hi,

how can I convert a string (or a binary file) to base64 ?


-Michael

October 20th, 1999, 08:09 PM
How I do it?

BrewGuru99
October 20th, 1999, 08:56 PM
I'm somewhat confused here...
* What characters are used in the Base64 character set? This is vital if you want to dispaly your conversion.

* Are you using a numeric string, or a string with any 'ol thing in it? (like, for instance, would you want to convert "Hello" to base64? Cause, I don't think it can be done.

* What do you need base64 for? This isn't important. I just can't think of any possible use for it.

* Convert a binary file? I don't understand what you want. Cause no matter what, files are still binary data.

Just a confused fellow programmer,

BrewGuru99

Brewguru99

czimmerman
October 28th, 1999, 02:14 PM
http://www.freevbcode.com/ShowCode.Asp?ID=109. This is a .dll to send e-mail with attachments. Look at the functions within the code that convert the attached file to Base64.

December 28th, 1999, 03:09 AM
asdfasdf

Jim Bassett
December 18th, 2000, 01:36 PM
One thing that I want to be able to do is to place binary data into a XML document. Like on the server create a xml document with say a gif file in it, send it to a client and pull out the gif. What I don't understand how to do is decode on the client side since I cannot find a way to implement Base64 with script language. Any suggtions?