show/hide this revision's text 2 added 57 characters in body

Since your OrderLine has a unique ID you can use that to construct a key to be placed in the ModelState errors container.

public ActionResult Delete(int? Id)
{
    ModelState.AddModelError("OrderLine" + Id.Value, "Error deleting OrderLine# " + Id.Value);

    ...    
}

and then use the ValidatinoMessage helper. This will check the ModelState to see if an error exists and if it does it will display the message. Otherwise it's blank.

<%= Html.ValidationMessage ("OrderLine" + Id)%>

In the next release of MVC Model will become a top level property so the following

foo(((someModelType) this.ViewData.Model).SomeProperty);

can be written as

foo(Model.SomeProperty);

Model objects should already be typed .unless you're using public object as a property?

show/hide this revision's text 1

Since your OrderLine has a unique ID you can use that to construct a key to be placed in the ModelState errors container.

public ActionResult Delete(int? Id)
{
    ModelState.AddModelError("OrderLine" + Id.Value, "Error deleting OrderLine# " + Id.Value);

    ...    
}

and then use the ValidatinoMessage helper. This will check the ModelState to see if an error exists and if it does it will display the message. Otherwise it's blank.

<%= Html.ValidationMessage ("OrderLine" + Id)%>

In the next release of MVC Model will become a top level property so the following

foo(((someModelType) this.ViewData.Model).SomeProperty);

can be written as

foo(Model.SomeProperty);

Model objects should already be typed.