0
votes
3answers
61 views
model binding in mvc
i'm having a textbox inside a form.
[View]
<%=html.textbox("name") %>
[Controller]
Index(string name)
{
name = "something";
return View();
}
On For …
0
votes
1answer
18 views
Overriding updatecollection in defaultmodelbinder
I'm having a problem with the default model binder creating new entities when I bind a entity with child collection rather than updating the existing child entities. I found what …
0
votes
1answer
30 views
I need a DataAnnotationsModelBinder for DataAnnotations v 3.5
I need a DataAnnotationsModelBinder that is going to work with System.ComponentModel.DataAnnotations v 3.5 i have found one on codeplex, but is for the v 0.99 of DataAnnotations …
11
votes
2answers
720 views
ASP.net MVC v2 - Debugging Model Binding Issues - BUG?
Hi guys
I am having more than a little difficulty trying to debug why MVC is not binding correctly in a given case I have...
Basically, I have my action which receives a complex …
0
votes
1answer
34 views
Some Fields Not Coming Through In ModelBinder
The following is the code for my controller:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, Actor actor)
{
try
{
actorRepo …
2
votes
4answers
598 views
ASP.NET MVC posted file model binding when parameter is Model
Is there any way to get posted files (<input type="file" />) to take part in model binding in ASP.NET MVC without manually looking at the request context in a custom model bi …
0
votes
3answers
63 views
Modelbinding lists
I got a controller action like
public class Question {
public int Id { get;set; }
public string Question { get;set; }
public string Answer { get;set; }
}
public Acti …
1
vote
2answers
123 views
ASP.NET MVC - Testing Page to Model Binding
Hello,
I have unit tests covering my model binders. I create a ModelBindingContext and populate the ValueProviderDictionary with my test values. I feel confident that once my co …
0
votes
2answers
50 views
Get FormCollection out controllerContext for Custom Model Binder
I had a nice function that took my FormCollection (provided from the controller). Now I want to do a model bind instead and have my model binder call that function and it needs th …
0
votes
1answer
60 views
How does MVC Invoke an Action and map Request.Form to it’s Parameters
I need to create something similar to how MVC invokes an Method(Action) and also uses the Model Binder to map a NamedValueCollection to the parameters on that method. Basically I h …
0
votes
3answers
122 views
ASP.NET MVC Issue with Using Reflection Created Objects with the Default Model Binder
I am having a weird issue in ASP.NET MVC with objects not being updated with UpdateModel when passed a formCollection. UpdateModel does not appear to be working properly when the o …
0
votes
1answer
36 views
MVC Model Binding: Using a name different from the QueryString for the Method Parameter
Given a URL:
http://www.stackoverflow.com/question?ask=123&answers=5
and its corresponding ActionMethod and Model:
public ActionResult Question(RequestObject request)
{ …
0
votes
3answers
236 views
ASP.NET MVC, LINQ and ModelBinders…
Hi all,
Is there a pre-built ModelBinder I can use with LINQ to get an object from a DataContext and update it on a HTTP post?
For example, currently I have this block of code:
…
3
votes
3answers
517 views
Updating Parent/Child Records with model binders in ASP.Net MVC
I have modified the Nerd Dinner application to allow editing of child records by adding the following code to the DinnerForm.ascx
<p>
<%int i = 0;
foreach (NerdD …
4
votes
2answers
164 views
ASP.NET MVC UpdateModel with interface
I am trying to get UpdateModel to populate a model that is set as only an interface at compile-time. For example, I have:
// View Model
public class AccountViewModel {
public st …
