vote up 0 vote down star

I am having issues adding validation methods to a couple of controls in my MVC app. I use the following to test for the mm/dd/yyyy format:

if (!Regex.IsMatch(candidateToEdit.availability.StartDate.ToShortDateString(), @"giantregex"))
            ModelState.AddModelError("availability_StartDate", "Start date must be in the mm/dd/yyyy format.");
//giantregex is a giant regular expression omitted for clarity

In my view I have:

<%= Html.ValidationSummary("Edit was unsuccessful. Please correct the errors and try again.") %>

<%= Html.ValidationMessage("availability_StartDate", "*")%>

For whatever reason the error text is not being displayed, it acknowledges there is an error and the start of the list is generated, but the "Start date must be in the mm/dd/yyyy format." is not displayed. It validates if you put in the date correctly.

flag

Is your validation occurring within a partial view (aka UserControl)? I had this problem but only for validation for inputs in partial views. – cfeduke Jul 16 at 19:13
No, it is a normal view. – Graham Jul 16 at 19:20
What if the user enters a date like 2/31/2009? You can't validate a date with a regex. – Paco Jul 16 at 19:28
Yes as I see it now the regex is completely unnecessary due to the strongly typed nature of the model. – Graham Jul 16 at 20:03

3 Answers

vote up 2 vote down check

I think the problem here is you're testing an actual DateTime type against a regular expression. Because they have entered an invalid date time format in the text box, it is never actually parsed into an actual DateTime where ToShortDateString() could be invoked on it. Therefore your regular expression validation is never actually occurring.

You'll need to adopt the ViewModel pattern where you expose all potential parsing problems as strings first (such as "candidateToEditViewModel.AvailabilityStartDateString") or implement client side validation and program defensively.

link|flag
That makes sense, it looks like when the invalid date is posted it is initialized to a default value though, which if that's the case the regular expression should return true, which it doesn't. – Graham Jul 16 at 19:43
I think what you are seeing is the built in validation because you declared (I assume) a DateTime and not a DateTime? so the property is actually required. – cfeduke Jul 16 at 19:58
So i was able to cheat a little bit based on the logic that I need. Every time an invalid date is posted a new DateTime is just initialized, so I just check to see if the StartDate value is equal to the initialized value of DateTime and throw the error if it's true. Marked as the answer since it lead me directly to the fix. Thanks. – Graham Jul 16 at 20:00
Providing an invalid date results in an InvalidOperationException on the server when the invalid value from the client is assigned to the DateTime property and fails. For that exact reason in our ASP.NET MVC application we had to add string properties named like OriginalPropertyNameString and we assign the values passed from the client to them first. They are parsed with DateTime.Parse() and if it passes, the value is re-assigned to the DateTime property, if it fails a validation exception is thrown and added to the ModelState. – Pawel Krakowiak Aug 19 at 13:33
vote up 0 vote down

The sample you gave works at my testproject. Can you try to reproduce the error in a freshly created project?

link|flag
vote up 0 vote down

I think you need to include a validation summary to get the message

<%= Html.ValidationSummary() %>

EDIT: Try putting a "." instead of a "_" as your property name in the AddModelError call, like this:

Instead of:

ModelState.AddModelError("availability_StartDate", "Start date must be...");

try this:

ModelState.AddModelError("availability.StartDate", "Start date must be...");
link|flag
The <%= Html.ValidationSummary() %> is present. I will edit my original post to clarify that. – Graham Jul 16 at 19:10
Changing it from a _ to a . doesn't seem to make a difference, this is strange. It's working with all of the other messages just fine. – Graham Jul 16 at 19:23
Yeah breakpointing in my code shows . used for model error keys instead of _ (though I am using xVal but I am pretty sure the operation remains the same). – cfeduke Jul 16 at 19:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.