How can I enumerate through all the key/values of a FormCollection (system.web.mvc) in ASP.NET MVC?

link|improve this question

55% accept rate
are you trying to display info in a table view? – TStamper Apr 18 '09 at 3:43
feedback

4 Answers

up vote 46 down vote accepted

Here are 3 ways to do it specifically with a FormCollection object.

public ActionResult SomeActionMethod(FormCollection formCollection)
{
  foreach (var key in formCollection.AllKeys)
  {
    var value = formCollection[key];
  }

  foreach (var key in formCollection.Keys)
  {
    var value = formCollection[key.ToString()];
  }

  // Using the ValueProvider
  var valueProvider = formCollection.ToValueProvider();
  foreach (var key in valueProvider.Keys)
  {
    var value = valueProvider[key];
  }
}
link|improve this answer
feedback
foreach(KeyValuePair<string, ValueProviderResult> kvp in form.ToValueProvider())
{
    string htmlControlName = kvp.Key;
    string htmlControlValue = kvp.Value.AttemptedValue;
}
link|improve this answer
feedback
foreach(var key in Request.Form.AllKeys)
{
   var value = Request.Form[key];
}
link|improve this answer
feedback

And in VB.Net:

    Dim fv As KeyValuePair(Of String, ValueProviderResult)
    For Each fv In formValues.ToValueProvider
        Response.Write(fv.Key + ": " + fv.Value.AttemptedValue)
    Next
link|improve this answer
I get "Expression is of type 'System.Web.Mvc.IValueProvider', which is not a collection type" when I try this. If I leave out the "ToValueProvider" it compiles, but I get "Specified cast is not valid." – DrydenMaker Dec 27 '09 at 6:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.