Tagged Questions

2
votes
4answers
283 views

How to ignore model binding from querystring in MVC

I have form submission doing a post back. The controller action accepts the values as parameters. For ex: EditProduct(int productid, string productname). productid is supplied from the form in a ...
2
votes
1answer
2k views

ASP.NET MVC Updating a list of objects on one form? (model binding to a list)

Quick question regarding updating a list of items in asp.net mvc. Basically I have an edit action method that returns a collection of objects (incidentally, the table structure of which looks as ...
1
vote
1answer
100 views

MVC/Razor model binding collections when an element is missing

I've got a form that contains a variable length list of textboxes, rendered using a template similar to this.. @Html.TextBox("items[" + itemIndex + "].Title", someValue) So the final rendered HTML ...
1
vote
1answer
567 views

How to dynamically bind data to label in asp.net mvc

How to dynamically bind data to label in Asp.net MVC. I have table where i need to display all compnay name dayanamically. I did create a Model for compnay name. code in model look like this, public ...
1
vote
1answer
534 views

What should a BindModel() implementation do?

I've been reading the MVC 3 source code trying to understand what semantics I should adhere to if I override DefaultModelBinder.BindModel() or even implement IModelBinder.BindModel(). It's unclear to ...
1
vote
1answer
950 views

MVC3 RC2 JSON Post Binding not working correctly

I've seen other posts on this subject and have fiddled with variations but still cannot not get the JSON model binding to work correctly. I have the following in my global.asax.cs Application_Start ...
1
vote
1answer
51 views

Why does the DefaultModelBinder not bind to Char properties with value of “ ”c

I have a class like Public Class Task Property DuplexType As Char Property Name As String End Class In my controller I have an action that looks like <HttpPost()> Function ...
0
votes
0answers
13 views

Custom model binder and object context

Using MVC 3 and Entity Framework code first here and looking for a solution to the following problem: I have a custom model binder that binds DB objects on post-back: public object ...
0
votes
1answer
103 views

ASP.NET Mvc 3 Model binding to a collection not working

I am trying to create an edit form for a collection of items. The List is null and when I check the ModelState its Valid property is "true" and it has 0 keys. There are no required properties on the ...
0
votes
1answer
177 views

Model Binding RadioButtonFor() default Select MVC3.0?

Hi I have a ModelBinded View foreach (var Model in Model) { @Html.RadioButtonFor(modelItem => Model.DefaultLocation, Model.AddressID, new { @Checked = Model.DefaultLocation, id = ...
0
votes
0answers
467 views

mvc3 model binding

In MVC2 we found that the default model binder was not successfully binding some of our complex objects ( even though all Id's from the HTML were coming in correctly). Specifically we found that an ...
0
votes
1answer
488 views

MVC 3 with ajax not doing ModelBinding in Controller action

My MVC 3 controller action is not deserializing the JSON data from my AJAX post. Fiddler shows the data being passed correctly. I put a break point on the var x = "ok!"; line and it hits it every ...
0
votes
2answers
521 views

Asp.net MVC - Model binding image button

I've got a very complex form and i'm using the MVC model binding to capture all the information I've got it set up to capture all the different submissions that can happen as there are about 10 ...