HTML form values adding commas in Classic ASP -
I have a classic ASP page that submits itself back. Oddly, the values returned from the selections are being added at the end of all of them. Has there been anything like this before? Any troubleshooting steps or tools are recommended?
I am expecting values like the numbers were returned - they have an ID of the values shown in the option.
I have checked in the page for the secret comma and can not find any - nor in the data that I am dragging into.
(Note - these single choices are not multiple)
As you have duplicate form fields, your values are added by adding them to commas, like:
name1
name1 = value1, value2 name2 = value3
code > Has no value, it becomes
name1 = value1, name2 = value3
Comments
Post a Comment