vote up 2 vote down star

Hi,

Using .net MVC and I am doing some server side validation in my Action that handles the form post.

What is a good technique to pass the errors back to the view?

I am thinking of creating an error collection, then adding that collection to my ViewData and then somehow weave some javascript (using jQuery) to display the error.

It would be nice it jQuery had some automagic way of display an error since this is a common pattern.

What do you do?

flag

22% accept rate

6 Answers

vote up 1 vote down

ViewData.ModelState is designed to pass state information (errors) from the controller to the view.

link|flag
vote up 3 vote down

You want to add the errors to the ModelState as @Mehrdad indicates.

...
catch (ArgumentOutOfRangeException e)
{
    ModelState.AddModelError( e.ParamName, e.Message );

    result = View( "New" );
}

And include the ValidationSummary in your View

<%= Html.ValidationSummary() %>
link|flag
To expand on this, it also adds a validation-error class to inputs created using HtmlHelpers, and you can display field unique messages anywhere in your view using HtmlHelpers that use the same ModelState. A framework is in development for unifying server/client validation: google xval. – eyston Jan 28 at 21:33
vote up -1 vote down

Yes it's good way but anyway you can put error message to your own ViewData["key"] = "Error on page...bla...bla...bla..."

<% if (!string.IsNullOrEmpty(ViewData["key"]+"")) { %>

<div>
Yor customized error template
</div

<% } %>
link|flag
That's doing validation in the view, which goes against what MVC is all about. – David Brown Feb 9 at 16:34
vote up 0 vote down

Not quite sure if it's what your looking for but there is a very easy to use form validation plugin for jquery at http://bassistance.de/jquery-plugins/jquery-plugin-validation/. It automagically displays error messages in red.

Ofcourse you still have to do server side validation, and pass back the errors. tvanfosson showed you how in his answer.

link|flag
vote up 0 vote down

I use the builtin ModelState object hold my validation errors. Validation is done either in binding or by hand supported by manually adding the errors like this:

ModelState.AddModelError("LastName","Last name can't be Doe").

To support the ajax form post scenario, I have made an extension method to the ModelStateDictionary, GetErrors(), that returns a light ModelStateErrorsDTO object (a flattened version of the modelstate's validation errors suitable for json serialization).

When a form post is an ajax request I then return a json serialized ModelStateErrorsDTO.

On the jquery side I have written a helper function that places the validation errors next to the relevant inputfields using the default mvc css classes, i.e. input-validation-error.

This way you will be able to make unobtrusive ajaxforms with validation messages.

Hope this helps.

link|flag
Do you have an example of this? – Funky81 Feb 26 at 21:46
I would love to see an example too. I've been trying to figure this out for a while and never thought to do pass ModelStateErrors as a JSON object – woopstash Oct 2 at 19:36
vote up 0 vote down

What about passing back a success message. Should this go in AddModelError? I want the message to go in validationsummary

link|flag
It's not an error, so to keep things clean, I wouldn't use AddModelError for such a thing. What I did was create a "ViewMessages" system that allows me to associate a message with a ViewMessageType.(Success|Error|Info|Warning) enum and use a custom HtmlHelper extension to display them. – David Brown Feb 9 at 16:36

Your Answer

Get an OpenID
or

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