[thelist] bug in ie/nt with post method of form?

Ron Thigpen rthigpen at nc.rr.com
Thu Aug 23 13:54:50 CDT 2001


i'd check to make sure you didn't have a "loopback" problem.  is this a 
multi-page form presentation, with server generated hidden inputs to 
carry previous page values?  or maybe a form that loops back on itself 
for user data-entry validation?  if so, you may be writing out a page 
that contains two input fields of the same name.  If that's the case, 
you'll see doubled up values like the one you're reporting.

these inputs, when submitted:
<input type="text" name="address1" value="3">
<input type="text" name="address1" value="3">

generate this formfield name/value pair:
ADDRESS1=3,3

--rt


.jeff wrote:
  it seems to be doubling up the form field values on some (but
> not all of the fields.
> 
> FORM
>   CATEGORY_ID        "3,3"





More information about the thelist mailing list