Tagged Questions

13
votes
4answers
3k views

What is correct behaviour of UpdateModel in ASP.NET MVC?

I am interested to know what you guys feel should be deemed "correct behaviour" in terms of the UpdateModel method in ASP.NET MVC. The reason I ask here is perhaps if this functionality is "by ...
5
votes
1answer
1k views

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 to retrieve the names of each selected checkbox. What is the best way to do this? Can I do it with ...
4
votes
3answers
3k views

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 user adds the items needed from the full listbox to the empty listbox. I'm using a form to ...
3
votes
2answers
2k views

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. Is it by behaviour?
2
votes
2answers
69 views

MVC3 model instead model … can't see when posting to controller

I have an order model (shown below) public class Order { //[Key] [ScaffoldColumn(false)] public int OrderId { get; set; } [DisplayName("Order Date")] ...
2
votes
1answer
1k views

Upgrading ASP.NET MVC to ASP.NET MVC3 FormCollection seems completely different

Hullo, I am trying to update a website from ASP.NET MVC1 to ASP.NET MVC3 and from VS2008 to VS2010. So far everything seems to be going OK except the class FormCollection seems to be completely ...
2
votes
1answer
637 views

How to build C# object from a FormCollection with complex keys

i have a javascript object, obj, that gets passed to an mvc action via a $.post() like so: var obj = { Items: [{ Text: "", Value: { Property1: "", Property2: "" }, { Text: "", Value: ...
2
votes
1answer
2k views

Getting multiple checkboxes from FormCollection element

Given multiple HTML checkboxes: <input type="checkbox" name="catIDs" value="1" /> <input type="checkbox" name="catIDs" value="2" /> ... <input type="checkbox" name="catIDs" value="100" ...
1
vote
0answers
497 views

UpdateModel for arrays in FormCollection

If I have [0].propertyname, [1].propertyname, etc in my FormCollection how would I go about updating the model? if I do this: public ActionResult Edit(int id, FormCollection collection){ ...
1
vote
2answers
187 views

asp.net-mvc get a dictionary in post action or how to transform FormCollection into a dictionary

anybody knows how to transform the FormCollection into a IDictionary or how to get a IDictionary in the post action ?
1
vote
3answers
2k views

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 button in Google Chrome, by default the value of submit button is the first submit button's value. ...
1
vote
2answers
1k views

ASP.NET MVC - How can I pass FormCollection data in a post to another Action?

I have a page "Results" with a form and when "submit" is clicked, the form is submmited to another Action. So far, so good... But, this works fine just if user is logged in. If not, he will be ...
0
votes
0answers
325 views

FormCollection Checkbox asp.net-mvc3

I have a survey page with diffrent type of questions singlechoise, multiplechoise. The questions are built with radiobuttons and checkboxes. When I save my data I loop thru my FormCollection in the ...
0
votes
2answers
221 views

ASP.NET MVC FormCollection TextArea

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 ...
0
votes
1answer
143 views

asp.net mvc : create listbox using formcollection

I'm experiencing current error in my view: <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
0
votes
2answers
173 views

How to get access to FormCollection, ViewData, and ModelState

Is there any way to get access to the current running request's FormCollection, ViewData, ModelState, etc. when running in an ASP.NET MVC application other than if you are directly working in the ...
0
votes
2answers
357 views

handle multiple controls with same name in form collection

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: ...
0
votes
2answers
283 views

Custom class for extracting data from the formcollection in a postback in ASP.net MVC

I've been wondering about the possibility of generating a strongly-type object from the formcollection to extract data from it. In other words, is it possible to generate a class depending on the ...
0
votes
1answer
368 views

List box values on postback

I am using asp.net mvc. I have used two list box in one of my views. I transfer desired items from left-hand-side list box to right-side list box. On a button click, i want to get the list box ...
0
votes
2answers
344 views

what is wrong with this insert method in asp.net mvc?

My controller calls a repository class method on insert, [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create([Bind(Exclude = "Id")]FormCollection collection) { try ...
0
votes
1answer
576 views

Actionresult doesnt get called by routelink. Formcollection the culprit?

I am fairly new to MVC. I am trying to set up a search page that searches a database and returns results. The search box is within a Html.BeginForm in my View, and looks like this: <% using ...
0
votes
1answer
183 views

Generic object controller in MVC, can you improve my code?

I am creating an application that will display a list of objects in a datagrid (list of any type of object), and allow the user to update any item. The code will know nothing about the object being ...