With so many people advocating the Firefox browser, amongst Marc in his DNJ blog, I just had to give it a chance. Installation is quick, most sites look OK but I still don't understand what happened to my favorites. The on-line manual mentions several times it will import IE's favorites but there is no mention at all where to find them in firefox.
The most interesting experiment was browsing an ASP.net site. Which was disappointing. Windows authentication does not work. At the start of the session an ff dialog pops up, entering the windows username and pw satifies ff. But most screens don't look right. Some are just blank. The source reveals there is a table, but ff just does not visualize it.
I'm a big fan of datalists. To allign columns I use fixed width labels. A snippet of typical html rendered looks like this:
<td class="LIaitem">
<a id="GekkoDataList1__ctl2_LinkButton3" href="javascript:__doPostBack('GekkoDataList1$_ctl2$LinkButton3','')">-</a>
<span id="GekkoDataList1__ctl2_Label7" style="font-size:Smaller;width:318px;"></span>
<span id="GekkoDataList1__ctl2_Label1" style="width:53px;"> </span>
<a id="GekkoDataList1__ctl2_HyperLink3" href="Projekt.aspx?id=84" style="width:337px;">Dit is een nieuw projekt </a>
</td>
In IE this result is nice columns of even width, also when the label is blank.
In Firefox this same pages doesn't look very good. All columns alignment is gone. The html for the same row looks quite different:
<td class="LIaitem">
<a id="GekkoDataList1__ctl2_LinkButton3" href="javascript:__doPostBack('GekkoDataList1$_ctl2$LinkButton3','')">-</a>
<span id="GekkoDataList1__ctl2_Label7"></span>
<span id="GekkoDataList1__ctl2_Label1"> </span>
<a id="GekkoDataList1__ctl2_HyperLink3" href="Projekt.aspx?id=84">Dit is een nieuw projekt </a>
</td>
All attributes of the label, including the width, have gone. No wonder the page is garbled. Pages without tables, just labels and textboxes look just as bad. And again all attributes have gone.
If my customers are going to switch to firefox (I actually hope they will not, give opera a chance in case you want to drop IE) I have work to do. For the moment it's end of experiment, got real work to do.
Peter