Tagged Questions

3
votes
2answers
704 views

CultureInfo issue with Modelbinding double in asp.net-mvc(2)

In my Jquery script I post two doubles using the browser's CultureInfo (en-UK) that uses the .as a fraction separator. My MVC app is running on a server with locale nl-BE using the , as a fraction ...
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 ...
1
vote
1answer
244 views

PropertyDescriptor.SetValue not working in ModelBinder

I'm implementing a custom ModelBinder where I'm trying to set a property with PropertyDescriptor.SetValue and I can't figure out why it isn't working. For some complex properties the value isn't ...
1
vote
1answer
371 views

How can I ignore HttpRequestValidationException and encoded HTML myself during model binding?

I'm trying to figure out how I can ignore a HttpRequestValidationException begin thrown during model binding. Here's the deal, I know how to handle HTML being posted and bound to a property that ...
1
vote
1answer
568 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
106 views

How can I Model Bind to a property that exists in my ViewModel?

My ViewModel class has a property that contains a ShareClass object. ShareClass has a property called Id. I'm currently passing the ShareClass id into the action method as follows: public ...
0
votes
1answer
267 views

MVC Abstract Base Controller Override parameter type for modelbinding

For simplicity's sake, lets say I have the following Abstract Base Controller Class: public abstract class RESTController : Controller { public abstract JsonResult List(); public ...
0
votes
3answers
335 views

Bind model back when displayed with DisplayFor template

I have the model public class PersonViewModel { public Guid Id { get; set; } public string Firstname { get; set; } public string Lastname { get; set; } } which is nested in an other ...
0
votes
1answer
379 views

ASP.NET MVC 2 Model Binding: How to debug a partially failed model binding on post back?

We had a View Model that looked like this: public class myViewModel { public Contract contract {get;set;} public Vendor vendor {get;set;} } public class Contract { public int contractID ...
0
votes
2answers
194 views

Model binding for a ViewModel containing multiple objects

I have a strongly typed view of type ProductListingViewModel which in turn contains a ProductViewModel. (both custom view models). I have some form elements on my page and these are created like so: ...
0
votes
1answer
210 views

How do I get model binding to work with a custom object in ASP.NET MVC?

I'd like to adopt ASP.NET MVC Model binding for a rich client application. I have the following controller action: public ActionResult CreateUser(User profile) Previously with HTML forms, as long ...
0
votes
1answer
59 views

This modelbinding from jquery, what's wrong with it?

I have the following action: public JsonResult GetGridCell(double longitude, double latitude) { var cell = new GridCellViewModel { X = (int)Math.Round(longitude.Value, 0), Y = ...
0
votes
0answers
425 views

ASP.net MVC Linq-To-SQL Many-To-Many Field Binding [closed]

Possible Duplicate: Modeling a many-to-many relationship in ASP.NET MVC using LINQ to SQL Hi there, The short version of this question is "Is there a way to gracefully handle database ...
0
votes
1answer
326 views

Action with set of fixed parameters in url and a set of optional parameters either from post or from querystring

In my route collection I have routes.MapRoute( "Recalculate", "{siteLanguage}/Formula.mvc/relcalculate/{identifierString}/{formulaId}/{wratio}/{customRecalcString}", new { controller = ...