Tagged Questions

0
votes
1answer
14 views

Exception Causes ModelBinding To Fail

If I receive a generic error in my ASP.NET MVC 2.0 Beta app and catch it. I notice that the next time I post that the model returned to my post is always null. Do I need to clear out the ModelState …
0
votes
1answer
52 views

Unit test a controller with custom model binder

In my application I have a custom model binder that I set to the DefaultBinder in the global.asax: ModelBinders.Binders.DefaultBinder = new XLDataAnnotationsModelBinder(); When writing unit tests …
0
votes
1answer
70 views

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

Hello (again) 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 …
0
votes
1answer
75 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 = …