On Mon, Feb 24, 2003 at 01:56:34PM +0100, Guillaume Devoyon wrote: <snip/> > My problem is that my form is not working with IE when i put 76 fields
Were they drop down menus? IE has problems when you have lots of select elements on a page. Earlier on today I accidently put [% FOREACH k = kerosene %] <select> <option>[% k %]</option> </select> [% END %] instead of <select> [% FOREACH k = kerosene %] <option>[% k %]</option> [% END %] </select> The resulting page killed IE. Andrew _______________________________________________ templates mailing list [EMAIL PROTECTED] http://lists.template-toolkit.org/mailman/listinfo/templates
