How can I enumerate through all the key/values of a FormCollection (system.web.mvc) in ASP.NET MVC?
foreach(var key in Request.Form.AllKeys) { var value = Request.Form[key]; }