I know that I usually post Flash specific posts but this was too cool and I wanted to make sure I had it down somewhere in case I ever needed it. It is a DHTML implemented DataGrid that is cross-browser compatible too. I found it pretty impressive http://www.activeui.net/examples.htm
Archive for December 8th, 2003
Old-School DataGrid
We’ve been using Yahoo instant messenger for a few years within our company–we’re all spread out amongst several different offices. We’ve run into issues before where characters get converted to smileys unintentionally–as often happens with code–or with messages never being received, but today for the first time we actually had a message sent incorrectly.

Chafic’s window is on the left and mine is on the right. Notice the code in the middle, <html get’s converted to Zhtml. Not sure what caused that.
I received a question today about the Multipart-MIME examples in my Serving Word presentation. The question is, “What are all those ‘3D’ letters and how can I make Word documents without them?”
PB Software
The 3D is related to encodings. The most common encoding mechanism for text in a Multipart-MIME message in called Quoted-Printable encoding. In this encoding mechanism most standard symbols, numbers, and letters are left exactly as is. All other characters are encoded using an equal sign followed by the two-digit hexidecimal code for the character. For example, a tab can be encoded as “=09″ since a tab is represented by 09.
Since the equal sign is used to indicate encodings, the equal sign itself must also be encoded whenver it’s encoutered. The equal sign is represented by decimal 61 or hexidecimal 3D, and thus is shown as “=3D” in a quoted-printable encoded message.
So, whenever you encode an HTML document, which has a lot of equals signs in it, in quoted-printable format, you’re going to have a lot of “=3D” sequences in the resulting document.
Only a developer will see these, the target application which reads the quoted-printable message will convert them back to regular equal signs, so a user will never see them.
So in short, don’t worry about it, =3D is normal and user’s won’t see it.