I am adding input elements in a view, dynamically, using JavaScript. But I am unable to find those inputs in my ActionResult's FormCollection
parameter...:
public ActionResult SomeAction(FormCollection fc)
I am able to find static input elements in the View. And using FireBug, I can see that the inputs are inside of the form element, in the DOM, and are not floating around somewhere random.
How can I access these inputs elements?