Tagged Questions

3
votes
1answer
63 views

Testing Model binding in ASP.NET MVC 2

First; I know that I should not need to test the internals of MVC but I REALLY need a suite a tests around data flowing into our system. How can I, I hope without mocking all of HTTP context, test …
0
votes
4answers
70 views

ModelState.IsValid == false, why?

where can i see the list of errors of which make the modelstate invalid, i didn't saw any errors property on the modelstate object
1
vote
3answers
61 views

Asp.net MVC ModelState.Clear

Can anyone give me a succinct definition of the role of ModelState in Asp.net MVC (or a link to one). In particular I need to know in what situations it is necessary or desirable to call …
0
votes
1answer
64 views

HTML.CheckBox persisting state after POST - Refresh ModelState?

I have a form that's made up of many items (think order items on an amazon order). Each row has a checkbox associated with them so the user can select many items and click 'remove'. The form is built …
1
vote
1answer
41 views

Refresh ModelState to remove errors

Refreshing the ModelState Hi, I have a question about the ModelState in an ASP.NET MVC controller. When the user selects a certain option from the view, the start date and end date for the …
0
votes
0answers
26 views

Updating ValidationSummary Via Asynchronously - ASP.NET MVC

In my controller, if the modelstate is invalid if (!ModelState.IsValid) return View(); I'd like to update the ValidationMessage but not have to repost the View. Seems like a desirable …
2
votes
2answers
114 views

ASP.NET MVC Model State

ModelState.IsValid is returning false for me in my controller. I know that means one or more model errors were found when model binding. My question is how do I see the errors? I noticed that my …
1
vote
1answer
61 views

How to replace the default ModelState error message in Asp.net MVC 2 ?

Hello, I need to replace the model state resource (to another language). I've seen some answers to the question above, but unfortunately I could'nt make it work. Any detailed answer or example would …
0
votes
0answers
33 views

MVC Exceptions within ModelState not being catched

I have noticed during some actions in MVC, such as an Edit ActionResult, if the UpdateModel fails it places the exception in to the ModelState, if I go through the collection I can find the exception. …
3
votes
1answer
88 views

Hunting down ModelState.IsValid errors.

Is there a good way in asp.net MVC to trace ModelState errors? IsValid returns false when I submit my form even if there aren't actually any fields in it, or anything being validated. I looked at this …
0
votes
1answer
124 views

How do I access the ModelState from within my View (aspx page)?

How do I access the ModelState from within my View (aspx page)?
0
votes
2answers
249 views

Is ModelState and AddModelError persistant in a Controller/Action?

My controller actions: [AcceptVerbs(HttpVerbs.Get)] public ActionResult Login() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public ActionResult Login(string …
3
votes
1answer
109 views

How do I access the ModelState form an ActionFilter?

I'm building an ActionFilter to reuse some code for a simple spam block - basically what I do is that I have a Html Helper method that renders an input textbox and a hidden input, and in the …
1
vote
2answers
430 views

Modelstate with Ajax Form

I'm using an AJAX form to update an item to the database. When it gets done, it returns a partial view that re-lists all the items and displays them all in a table. The problem occurs when I have to …