I have a dynamic form that allow to add many fields dynamically,
I Know how to get the value of single field in aspnet using : Request.Form["myField"],but here i have more than field and i dont know the count of these fields since these are dynamic
the fields name is "orders[]"
ex:
<form>
<input type="text" name="orders[]" value="order1" />
<input type="text" name="orders[]" value="order2" />
<input type="text" name="orders[]" value="order3" />
</form>
In php,
i get the values as an array by accessing $_POST['orders']
;
ex:
$orders = $_POST['orders'];
foreach($orders as $order){
//execute ...
}
how can I do this in c# ?
You can access everything that gets sent back to the server by using the Request object.
Is a collection that will contain the item you are looking for.
Use Request.Form.GetValues.
Request.Form is a
NameValueCollection
, an object that can store a collection of items under the same key and theToString
displays the values in CSV format.Markup:
Code behind:
You would use
Request.Form[]
. Or if your form and fields hadrunat="server"
and ids, you could just use the id in the codebehind and the.Text()
method to access its value.