Home : General : Internet Technologies :

General: Internet Technologies: Bloated Code Fun: Edit Log

Here is the list of edits for this post
Bloated Code Fun
The new addition of Microsoft FrontPage (2002) must produce the most bloated code I have ever seen in a page editor. The promise of cleaner code from MS in each next addition is a joke. Check out the following snippet of a simple 1 cell table. This is produced from the program out-of-the-box:

FRONTPAGE:
Code:
<table border="0" style="border-collapse: collapse" bordercolor="#111111"
width="100%" id="AutoNumber1">
<tr>
<td width="100%"><span lang="EN-GB">TEST TABLE</span></td>
</tr>
</table>

...and for comparison how it 'should' be:

Code:
<table border="0" width="100%">
<tr>
<td width="100%">TEST TABLE></td>
</tr>
</table>

Nice! Crazy

~ ERASER


Free JavaScripts @ Insight Eye

Last edited by:

Eraser: Apr 14, 2002, 6:10 AM

Edit Log: