How can I enumerate through all the key/values of a FormCollection (system.web.mvc) in ASP.NET MVC?
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