I have such form, and i want to get values of each id in foreach loop
Price <input type="text" id="1" name="items" value="" /> <br />
Condition <input type="text" id="2" name="items" value="" /> <br />
Brand <input type="text" id="3" name="items" value="" /> <br />
string[] items = Request.Form.GetValues("items");
foreach(var ax in items){
Response.Write("<br/>" + ax + "-" +Request['id']);
}
Is such thing possible in asp.net ?