I have a number of dynamically created fields on the views. Lets say
Car Payment [1] [2] [3]
House Payment [1] [2] [3]
CC Payment [1] [2] [3]
In my controller I want to see what values the user has selected for each one but I find that using the FormCollection I only get back "Car Payment", "House Payment", and "CC Payment". I do not get back the actual values associated with those radiobutton selections unless I explicitly define those inputs as a controller variable. Unfortunately these radio buttons are dynamically generated, including their names so this isn't an option. Any ideas in terms of handling this problem?