Hi, I have some fields dynamically generated and I don't know how many. Let say that I create 10 fields on an HTML page with asp:
<input type="text" name="Field[1]">
<input type="text" name="Field[2]">
<input type="text" name="Field[3]">
...
Using PHP, I could loop on the Field value and get each of them, but it doesn't seems to work in ASP using QueryString...
I tried
For Each mString In Request.QueryString("Field")
Response.Write(mString)
Next
but it doesn't outputs anything.
Any hing will be much appreciated.
<input type="text" name="Field[1]">
<input type="text" name="Field[2]">
<input type="text" name="Field[3]">
...
Using PHP, I could loop on the Field value and get each of them, but it doesn't seems to work in ASP using QueryString...
I tried
For Each mString In Request.QueryString("Field")
Response.Write(mString)
Next
but it doesn't outputs anything.
Any hing will be much appreciated.