Tagged Questions
The formcollection tag has no wiki summary.
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 ...
5
votes
3answers
5k views
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 the ASP.NET MVC1 and I'm basically just updating it to MVC2.
My problem ...
3
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
68 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
2answers
371 views
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 I'd take a different approach and just find my radio button value client side, and ...
2
votes
2answers
1k views
ASP.NET MVC3 fill in form again after post using FormCollection
So what I do is, I have a controller that checks if the input in my form is correct. If it's not, it puts an error message in the ViewBag and returns the view. Like this (unimportant stuff left out):
...
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
2answers
90 views
Getting values from the html to the controller
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:
<table id="tableSeriales" ...
2
votes
2answers
254 views
ASP.NET MVC2 - Trim of whitespace on all fields in a model?
I have data coming in and out of an ASP.NET MVC2 Controller/View set-up.
Unfortunety, all data that comes from the view has MASSIVE amounts of whitespace at the end.
I'm using the TryUpdateModel to ...
2
votes
1answer
635 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
2answers
207 views
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.
For reasons I won't go ...
1
vote
2answers
695 views
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 the posted form as a FormCollection, how can I check if an item was selected in the ListBox?
In my ...
1
vote
2answers
284 views
Understanding FormCollection.AllKeys.Contains
I'm looking at a code block and can't grok what's happening with the line - formValues.AllKeys.Contains("Email_" + i); it looks like an assignment should be taking place but...
public ...
1
vote
2answers
380 views
MVC2 FormCollection options
I'm just getting started with MVC2 and going through the NerdDinner examples. I noticed that there seems to be multiple ways to pass in the form values for example:
FormColelction formvalues
...
1
vote
2answers
478 views
How can a formcollection be enumerated in ASP.NET MVC2
I was previously using http://stackoverflow.com/questions/762825/how-can-a-formcollection-be-enumerated-in-asp-net-mvc 's implementation but now I'm on VS2010 and MVC2 its complaining:
Error 1 ...
1
vote
1answer
597 views
Retrieving postback from Dynamically created controls in MVC without using FormCollection
I'm passing a List to an MVC view and generating checkboxes for each object in the list (The checkboxes are named t.Name).
I'd like to be able to tell which checkboxes were checked once the form is ...
1
vote
0answers
496 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
1answer
775 views
Converting formCollection array to objects in the controller
in my view I have several [n].propertyName array fields I want to turn the formCollection fields into objects myobject[n].propertyName when it goes to the controller.
so for example, the context:
...
1
vote
2answers
186 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
1answer
363 views
ASP.NET MVC2 - specific fields in form pass via a specific object?
In database I have Contacts table:
ContactID (int)
FirstName (varchar)
LastName (varchar)
...
XmlFields (xml) // This field is xml type
To create a new contact, I created two classes - one for ...
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
2k views
MVC2: How can I read control values for an action link?
I'm passing in some model information to an ActionLink, but I'd also like to provide the action with the values of some inputs on the page. For example, if I had something like this:
<input ...
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
1answer
57 views
Dynamic Form Building and Passing Query Parameters
I am working on a form that is generated dynamically based on some meta-data tables in my database. I create input tags with names like setting_1, setting_53, setting_22 where the number is the ...
0
votes
1answer
106 views
MVC3 - How to bind a FormCollection to a Model when creating a new database object?
when updating ViewModels via
[HttpPost]
public ActionResult Edit(int id, AddressChooserEnum addressChooser, string btnSubmit, FormCollection fc)
{
var vm = new AddressViewModel(id, ...
0
votes
0answers
321 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
218 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
139 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
361 views
Display FormCollection with ASP.NET MVC
I have a form using Html.BeginForm() on a view. I have in the controller an ActionResult to handle the post. What I need is to just kick back the results to a view. I can kick off the new view, but I ...
0
votes
0answers
79 views
MVC2 : How to come back to the mother form of a jquery child form without reloading the first page?
I have a modal popup (using jquery). On the submit button, I would like to get the result of this modal popup (through the FormCollection parameter), and to close my Form without reloading my mother ...
0
votes
2answers
355 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
1answer
408 views
C# ASP.NET MVC Table rows as form values FormCollection
I'm stuck with getting values out of the FormCollection in my controller. The problem is that my form is a table.
<% using (Html.BeginForm("PasOverlappendeAfwezighedenAan", "Afwezigheid")) ...
0
votes
0answers
614 views
asp.net mvc 3 with ajax.beginform and Formcollection not work
Controller:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult SetPowerFlow(FormCollection collection)
{
string result = string.Empty;
if (Request.IsAjaxRequest())
{
result = ...
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
3answers
398 views
Fetching attribute values from FormCollection in Asp.net MVC
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.
Is there ...
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
343 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
575 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 ...
0
votes
2answers
194 views
MVC posted values
In asp.net MVC application we have mechanism where, when we submit
a form and if there is any problem with the values (validation fails),
the form is displayed back maintaining old values. How does it ...
0
votes
2answers
2k views
How to get formcollection using ajax.actionlink
I have a controller with the codes like this:
[AcceptVerbs("POST")]
public ActionResult Create(FormCollection collection)
{
//why is that the collection is null?
}
I am calling this action ...