Tagged Questions

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
591 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
52 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 ...
1
vote
1answer
304 views

Custom Model Binder for DropDownList not Selecting Correct Value

i've created my own custom model binder to handle a Section DropDownList defined in my view as: Html.DropDownListFor(m => m.Category.Section, new SelectList(Model.Sections, "SectionID", ...
0
votes
1answer
152 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
2answers
530 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 ...