Dynamically inserted input elements not showing up in ActionResult's FormCollection parameter
- by roosteronacid
I am adding input elements to a view, dynamically, using JavaScript. But I am unable to find those inputs in my ActionResult's FormCollection parameter...:
public ActionResult Del(FormCollection fc)
I am able to find static input elements in the View. And using FireBug in Mozilla FireFox, I can see that the inputs are inside of the form element,…