I have a web application in which I pass through input hidden
a dynamic number of values
through
of a form for a% of Delphi%.
In action
, I wanted to know a way to get all action
with the same name.
When it's only a values
, I use value
I'm passing the form inputs as follows:
<input type="hidden" name="numero[]" value="123" />
<input type="hidden" name="numero[]" value="456" />
<input type="hidden" name="numero[]" value="789" />
But how do I get everyone within request.ContentFields.Values['numero']
?
- Conventionally returns only the contents of the first
action
. - I tried to create a dynamic array and pass it to it, but it did not work.