Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
6answers
6k 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 ...
11
votes
1answer
3k 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)?
9
votes
2answers
5k views

ModelState.AddModelError - How can I add an error that isn't for a property?

I am checking my database in Create(FooViewModel fvm){...} to see if the fvm.prop1 and fvm.prop2 already exist in that combination; if so, I want to add an error to the modelstate, then return the ...
7
votes
3answers
3k views

ASP.NET MVC How to convert ModelState errors to json

How do you get a list of all ModelState error messages? I found this code to get all the keys: ( http://stackoverflow.com/questions/888521/returning-a-list-of-keys-with-modelstate-errors) var ...
7
votes
5answers
6k 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
6
votes
1answer
625 views

How do I access the ModelState from 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 ...
5
votes
3answers
1k views

Success messages as opposed to model state error messages

For error messages, validation faults etc you have ModelState.AddErrorMessage("Fool!"); But, where do you put success responses like "You successfully transfered alot of money to your ex." + "Your ...
5
votes
1answer
802 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 ...
4
votes
3answers
99 views

Testing ModelState is always valid in asp.net mvc

When testing my controller's actions the ModelState is always valid. public class Product { public int Id { get; set; } [Required] [StringLength(10)] public string Name { get; set; } ...
4
votes
3answers
344 views

Is it correct way to use ModelState.Remove to deal with ModelState?

Im working on a big MVC3 web application and have an annoyance regarding the ModelState.IsValid method. ModelState is being used in nearly all of my controllers so to validate the data being posted. ...
4
votes
5answers
2k views

ASP.NET MVC - How to Preserve ModelState Errors Across RedirectToAction?

I have the following two action methods (simplified for question): [HttpGet] public ActionResult Create(string uniqueUri) { // get some stuff based on uniqueuri, set in ViewData. return ...
4
votes
1answer
275 views

Model is not automatically validated when unit testing

Here's part of a controller action: [HttpPost] public ActionResult NewComplaint(Complaint complaint) { if(!ModelState.IsValid) { // some code } // some more code... } When ...
4
votes
4answers
837 views

ASP.MVC 2 RTM + ModelState Error at Id property

I have this classes: public class GroupMetadata { [HiddenInput(DisplayValue = false)] public int Id { get; set; } [Required] public string Name { get; set; } } ...
4
votes
1answer
2k 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 ...
4
votes
4answers
4k views

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

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 be ...
3
votes
2answers
2k 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 ...
3
votes
1answer
784 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 ...
2
votes
1answer
49 views

How do I handle a HttpRequestValidationException and return a meaningful error using AddModelError?

I would like to handle HttpRequestValidationExceptions (e.g. when html is inserted into form fields) and return the user back to the page after submission with a meaningful error to highlight the ...
2
votes
1answer
92 views

Clear field value if ModelState says the field is invalid

I want to clear the submitted value of a field in a model if the ModelState shows that the field is not valid. This is where I have got so far but can't tie up the key to value in the model. Any ...
2
votes
1answer
406 views

ASP.NET MVC 3 ModelState.IsValid is always returning true for JSON encoded data using Ext.Direct

I have a form and the only item that is required is the customer name. So in my model, I have: [DisplayName("Customer name*:")] [Required] public string CustomerName { get; set; } Previously, I ...
2
votes
1answer
747 views

MVC 3 ModelState.IsValid with multiple ViewModels

Let's just say I have A ViewModel that is made up of 3 other ViewModels. One contains a list of items, the other contains an instance of a class with a [Required] attribute and then another list of ...
2
votes
1answer
132 views

What determines the key in the ModelStateDictionary for Items of Collection Properties

If this is my view model: public class ViewModel{ public string SimpleProperty{get;set;} public SubViewModel ComplexProperty{ get;set;} public SubViewModel[] ComplexPropertyArray{ ...
2
votes
1answer
802 views

Validation: How to inject A Model State wrapper with Ninject?

I was looking at this tutorial http://asp-umb.neudesic.com/mvc/tutorials/validating-with-a-service-layer--cs on how to wrap my validation data around a wrapper. I would like to use dependency inject ...
2
votes
1answer
765 views

ASP.NET MVC 2 Model Errors with Custom Exceptions

I have a custom exception class: public class MyException: Exception { public MyException(MyExceptionEnum myError) : base(myError.ToDescription()) { } public MyException(MyExceptionEnum ...
2
votes
1answer
445 views

Manually adding text to html.ValidationSummary?

I am rather new to mvc2 and when following a writeup on data annotations and such, I came across a bit of code that let me manually add a line of text to the validation summary. I've searched for the ...
2
votes
1answer
466 views

Updating value provider prior to TryUpdateModel

Lets say we have a class with a property called PetsName. If it is left blank on the screen I want to update the value provider so if the user doesn't enter a pet name, we force 'unnamed'. This isn't ...
2
votes
1answer
354 views

TDD - testing business rules/validation in ASP.NET MVC

I am using the sharp architecture so I can easily use mocks etc. in my unit tests and/or during TDD. I have quite complicated business rules and would like to test them at the controller level. I am ...
2
votes
2answers
472 views

IOC on IValidationDictionary with Castle Windsor

I'm new to Castle Windsor and am just using the latest version. I've created entries for my repositories which are working fine but I have one final dependency that I'm passing into my controller. ...
2
votes
2answers
4k views

ASP.NET MVC: DataAnnotations - Show an error message indicating that a field must be numeric

There appears to be something of a hole in the way DataAnnotations works in that a user entering in some text into a field that will go into an int will never reach the DataAnnotations code. It kicks ...
2
votes
2answers
2k views

howt to get the error message from model state

Im using modelstate.Adderror("test","test message") And how can i get this modelstate value in controller itself. Like I need to get the error message of "test" in the controller.
2
votes
2answers
2k 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 ...
1
vote
1answer
58 views

MVC3 Remote Validation

I am currently in the proccess of setting up remote validation using MVC3 so that a user is alerted if their chosen username already exists. Everything is set up and working correctly appart from the ...
1
vote
1answer
54 views

fieldID is required. Error when trying to add a new object via MVC3, ModelStat.IsValid false errors?

I have this ViewModel: [Key] public long KlijentID { get; set; } [Required(ErrorMessageResourceName = "RequiredField", ErrorMessageResourceType = typeof(Resources))] ...
1
vote
1answer
35 views

how to use DataAnnotations in desktop application

When we are using EF (f.e.) via MVC, we can use ModelState.IsValid to detect a model can pass DataAnnotations metadata or not. But how can I use DataAnnotations metadata in a desktop (win-forms / wpf) ...
1
vote
1answer
49 views

How do I add modelstate error to a list

I have a view that uses a list of modelitems like this: List<It4You.AlertBrick.Library.Domain.Order.AbOrderLineItemPicked> When I get this list serverside I check if this is one type of ...
1
vote
1answer
71 views

Can ASP.Net MVC 2 Custom attributes on class level and on property level be active in the same time?

I am working on asp.net mvc 2 web application. I have model with 3 properties: [IsCityInCountry("CountryID", "CityID"] public class UserInfo { [Required] public int UserID { get; set; } ...
1
vote
0answers
92 views

Validate fields only when a checkbox is true (ASP.NET-MVC3)

I have a form where there are fields which are hidden by default and only visible if the user checks an "additional info" checkbox. I want these fields to validate against dataannotation attributes ...
1
vote
1answer
358 views

How to add images in validation summary along with the error message?

I wanna display error message with success image(green tick mark) and failure image(Red warning) in validation summary. how to do this. and i validation summary i will have to display some text in ...
1
vote
1answer
543 views

How to use MVC ajax and PartialViews while maintaining ModelState errors

I'm using MVC3. I have a form, that on submit, returns a PartialView that updates my page. The question/issue is -- how do I show ModelState errors and keep my form values in-tact when there is an ...
1
vote
1answer
207 views

ModelState.IsValid fails to validate!

So I have a simple class which I use to send a Contact Form email. public class EnquiryEmail : Entity { [DataType(DataType.Text)] [Required(ErrorMessage = "Name is a required field")] ...
1
vote
1answer
1k views

Custom model binding, model state, and data annotations

I have a few questions regarding custom model binding, model state, and data annotations. 1) Is it redundant to do validation in the custom model binder if I have data annotations on my model, ...
1
vote
0answers
285 views

View the Validation summery in the required place

I have a partial view in a main view in mvc3. The partial view has it's own ModelState.AddModelError in its action method and the main view has another ModelState.AddModelError in its action method. ...
1
vote
2answers
133 views

Saving entities with forign key in ASP.NET MVC

I need some help doing something I am assuming is simple. I am using ASP.net MVC 3 with CodeFirst (CTP5) I have two entities: Company and Location. A Company can many Locations. The classes are as ...
1
vote
1answer
364 views

How to call ValidationAttributes manually? (DataAnnotations and ModelState)

We have a need within some of our logic to iterate through the properties of a model to auto-bind properties and want to extend the functionality to include the new dataannotations in C# 4.0. At the ...
1
vote
1answer
451 views

ASP.NET MVC auto-binds a refreshed model when ModelState is invalid on HttpPost

I'm working on an ASP.NET MVC2 app. I've come to realize a very surprising, yet amazing thing that MVC does behind the scenes having to do with the ModelState and model binding. I have a ViewModel ...
1
vote
2answers
69 views

How do you validate multi-part models?

I'm working on a really big order form with a bunch of multi-part data that's submitted all at once. I'm using that trick where you render 30-40 item rows in the HTML and allow the user to "show" or ...
1
vote
1answer
102 views

How to prevent a ModelBinder error in a mandatory fields of a list?

I've got this object created from EntityFramework from my database. [EdmEntityTypeAttribute(NamespaceName="ContactCoreModel", Name="TargetLang")] [Serializable()] ...
1
vote
3answers
243 views

How do I keep field values in the ASP.NET MVC form if it has been invalidated?

I have a form that is going through some validation before sending an e-mail. I have tried using this for validation, where the method ValidateInput sets the ModelState depending on the input: ...
1
vote
1answer
258 views

MVC 2 ModelState - Show all Errors

My asp.net form is throwing errors relating to an incorrect model, but on the page it's not showing me what model field threw the error. I'd like to Debug.WriteLine all errors in the ModelState but am ...
1
vote
1answer
390 views

Why is ModelStateToTempData Attribute from MVCContrib not working?

I'm simply trying to pass the ModelState from one action to another in the same controller, for validation purposes. However, the model state does not get updated. I see that ...

1 2