How can I enumerate through all the key/values of a FormCollection (system.web.mvc) in ASP.NET MVC?
foreach(KeyValuePair kvp in form.ToValueProvider()) { string htmlControlName = kvp.Key; string htmlControlValue = kvp.Value.AttemptedValue; }