Tagged Questions
3
votes
2answers
733 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
290 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 ...
0
votes
1answer
216 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
60 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
1answer
334 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 = ...