Dan replied to jodleren
16-Nov-09 11:47 AM

Can you post the code without snipping? I am guessing that the cause of the
problem has been snipped out.
If you keep getting values appended like that, then it is normally caused by
having 2 fields of the same name, each with one of the values. So, for
instance, you have the code above which writes out a hidden field called
ignore_mf and sets it to either true or false, which is fine. But if you
have another hidden field called ignore_mf in the same form, which just has
the value from request.form written into it (maybe you have this for
debugging or testing), then the browser will send both hidden fields, and
the result is the values appended to each other with a comma between them
(because that is how ASP stuffs multiple fields with the same name into a
single value).
I'd suggest you view the source of your form, and look for any duplicated
ignore_mf fields. If you have multiple forms on one page, make sure you have
closed each correctly. Maybe you have more than one form, each has an
ignore_mf field, and because you have omitted a </form> tag they are being
treated as one form (or you have made a HTML error that causes the </form> to
be ignored because it is in the wrong place - use a HTML validator to check
for this).
--
Dan