Mulitple row submit value
I will like to submit mutliple rows using form, but found out that if a certain value is empty. Coldfusion does not append to the submit string.
See example:
form.cfm
<form action="action.cfm" method="post">
<input type="text" name="a" value="1">
<input type="text" name="a" value="2">
<input type="text" name="a" value="3">
<input type="text" name="b" value="1">
<input type="text" name="b">
<input type="text" name="b" value="3">
</form>
action.cfm
<cfoutput>
#form.a#
<br>
#form.b#
</cfoutput>
Result: 1,2,3 for #form.a#
Result: 1,3 for #form.b#
I think this is coldfusion default behaviour, is there any way i can return the results as folllow?
Expected Result: 1,2,3 for #form.a#
Expected Result: 1,,3 for #form.b#