I have a list of inputs that are automatically generated by script and they are inserted into a form getting like this:
<input type="text" id="txtValue" name="txtValue" />
<input type="text" id="txtValue" name="txtValue" />
<input type="text" id="txtValue" name="txtValue" />
...
These are not elements manipulated by C # code-behind (Asp.NET WenForms application), and I need to get those values back-end when posting the form.
How do you capture these values?
Is it possible, for example, to work with these values in the form of a vector?
Obs : When parsing Request.Form
I checked that only one txtValue element appeared.