I'm running a sample page through an IE6 compability checker, and I'm thinking the following changes should be made:
1. In NetWeb.CLW
Old: packet = '<div id="_busy" class="bdiv"><img src="/images/_busy.gif"></img></div>'
New: packet = '<div id="_busy" class="bdiv"><img src="/images/_busy.gif" /></div>'
2. In "After Browse, before buttons," the Save Button set is between the </td> and the </tr>. It should be inside the <td></td>.
Old: packet = clip(packet) & '</div><13,10></td><13,10>'
If p_web.site.UseSaveButtonSet
New: packet = clip(packet) & '</div><13,10></td><13,10>'
If p_web.site.UseSaveButtonSet
packet = clip(packet) & '<td><13,10>'
(existing code)
packet = clip(packet) & '</td><13,10>'