Top "Formcollection" questions

A form collection is a form containing an arbitrary number of the same set of fields.

Check whether an element exists in mvc formcollection

I am receiving some data in mvc controller as FormCollection. I would like to check if there is a particular …

c# asp.net-mvc formcollection
C# ASP.NET Core Cannot bind to a model of type 'Microsoft.AspNetCore.Http.FormCollection'

I am getting the following error An unhandled exception occurred while processing the request. InvalidOperationException: The 'Microsoft.AspNetCore.Mvc.ModelBinding.…

c# asp.net-core-mvc model-binding formcollection
should formcollection be empty on asp.net mvc GET request

i am posting a simple action. public void Login(FormCollection formCollection) { ... } Even with few querystring values, the formcollection.Count is 0. …

c# asp.net-mvc formcollection
jquery ajax form collection and other key/value pairs

well since I never got an answer to my question here: checkboxes and radio buttons in MVC FormCollection I thought …

asp.net-mvc jquery formcollection
How to solve the error "Type provided must be an Enum. Parameter name: enumType"

So I've been using the Pay Simple SDK. I'm getting this error. Does anyone know how to solve this? var …

c# asp.net-mvc enums formcollection paysimple
How can i check if FormCollection["key"] exists

I'm using ASP.NET MVC 3 and I post a form in my view, containing a @Html.ListBoxFor When I receive …

asp.net-mvc-3 listbox formcollection