well since I never got an answer to my question here: checkboxes and radio buttons in MVC FormCollection
I did some searching for determining which radio button is selected and if checkboxes are checked or not just using the FormCollection that is being passed to my Action method.
I have a textarea that represents a description field. The descriptions have commas so when trying to split the field\'s descriptions the data is not parsed correctly. How can I get each row\'s descri
I\'m experiencing current error in my view: <%@ Page Title=\"\" Language=\"C#\" MasterPageFile=\"~/Views/Shared/Site.Master\"Inherits=\"System.Web.Mvc.ViewPage<ProjectenII.Models.Domain.Student
Is there any way to get access to the curren开发者_开发问答t running request\'s FormCollection, ViewData, ModelState, etc. when running in an ASP.NET MVC application other than if you are directly wor
I\'m using ASP.NET MVC 3 and I post a form in my view, containing开发者_StackOverflow社区 a @Html.ListBoxFor
I have a form in my asp.net mvc(C#) application which handles some dynamic controls. On a button click \"Add Row\", i will add a row dynamically to the existing table as:
My application writes custom attributes to input controls using Helper classes. And also we are loading the UserControl dynamically so we need to use FormCollection to get the posted values.
I\'m trying to access the values a user introduces in a table from my controller. This table is NOT part of the model, and the view source code is something like:
I have a form which contains a whole bunch of checkboxes and some other types of control too. I need to retrieve the names of each selected checkbox.