Top "Formcollection" questions

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

MVC Razor get option value from select with FormCollection

My view has a Select with elements(options) from my ViewModel. @using (Html.BeginForm("NewUser", "Admin")) { <select multiple="" id="…

html asp.net-mvc select razor formcollection
Making an async HttpClient post request with data from FormCollection

I am doing an Asp.Net MVC 4 project and am looking to an internal request (like a proxy) to our …

c# asp.net-mvc-4 formcollection dotnet-httpclient
using two submit buttons inside single form

I have a form with two submit buttons in my asp.net mvc (C#) application. When i click any submit …

asp.net-mvc formcollection
Getting multiple checkboxes from FormCollection element

Given multiple HTML checkboxes: <input type="checkbox" name="catIDs" value="1" /> <input type="checkbox" name="catIDs" value="2" /> ... &…

asp.net-mvc checkbox formcollection
Getting all selected checkboxes from a FormCollection

I have a form which contains a whole bunch of checkboxes and some other types of control too. I need …

asp.net-mvc controls webforms checkbox formcollection
formcollection only holds the selected html.listbox items values? MVC

My scenario is this: I have two listbox's, one that contains all my database items, and an empty one. The …

asp.net-mvc listbox formcollection
how to convert formcollection to model in mvc

Is it possible to convert formcollection to a 'model' known? [HttpPost] public ActionResult Settings(FormCollection fc) { var model=(Student)fc; // …

asp.net-mvc asp.net-mvc-4 c#-4.0 formcollection
Use a dropdownlist to filter results in MVC

I have an MVC web application that returns a table. I want to add a dropdownlist to the view page …

asp.net-mvc select filter formcollection
Proper way of using FormCollection in ASP.NET MVC2 Create Method?

I am currently developing an application with the new ASP.NET MVC2 framework. Originally I started writing this application in …

asp.net asp.net-mvc-2 formcollection
ASP.NET MVC4 FormCollection.GetValues not returning correct values

I'm building a mobile webiste using ASP.NET MVC4. One of the pages in my solution contains a table where …

asp.net-mvc asp.net-mvc-4 formcollection