vote up 2 vote down star
1

I'm just trying to do some simple validation in MVC RC and am getting an error. For the purposes of this question, I am not using the UpdateModel.

Here is the code in the form:

<%= Html.TextBox("UserId")%>
<%= Html.ValidationMessage("UserId") %>

If I add the following line in the controller, I will get a NullReferenceException on the TextBox:

ModelState.AddModelError("UserId", "*");

So to fix this, I've also added the following line:

ModelState.SetModelValue("UserId", ValueProvider["UserId"]);

Why am I having to rebind the value? I only have to do this if I add the error, but it seems like I shouldn't have to do this. I feel like Im doing something incorrectly or just not familiar enough with binding.

It looks like Im not the only one who has seen this. Per request, here is the controller code:

[AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Create(FormCollection collection)
    {
        AppUser newUser = new AppUser();

        try
        {
            newUser.UserId = collection["UserId"];

            AppUserDAL.AddUser(newUser);

            return RedirectToAction("Index");
        }
        catch (Exception ex)
        {
            ViewData["ReturnMessage"] = ex.Message;

            ModelState.AddModelError("UserId", "*");
            ModelState.SetModelValue("UserId", ValueProvider["UserId"]);


            return View(newUser);
        }
flag

I also noticed this and I just wrote it off as something I did wrong and continued on with other work. – Chad Moran Feb 17 at 23:33
Could you please add a full code of page and of the controller's method? – zihotki Feb 18 at 6:05

3 Answers

vote up 3 vote down check

Call this extension method:

        public static void AddModelError (this ModelStateDictionary modelState, string key, string errorMessage, string attemptedValue) {
        modelState.AddModelError (key, errorMessage);
        modelState.SetModelValue (key, new ValueProviderResult (attemptedValue, attemptedValue, null));
    }

From: Issues with AddModelError() / SetModelValue with MVC RC1

link|flag
Ok, it looks like this is a problem with RC1. This will work, although it seems a little heavy handed. Thanks for the response. – Eric Brown Mar 16 at 22:04
we'll see if this is fixed in the 1.0 release – Eric Brown Mar 18 at 15:12
vote up 0 vote down

Here you can read a description of this problem and how to solve it in another way.

link|flag
vote up 0 vote down

You definitely don't need to call SetModelValue.

Perhaps you just need your view to pull the Textbox from the model you passed in?

<%= Html.TextBox("UserId", Model.UserId)%>

That's how I do it.

link|flag
I tried this and it doesnt appear to work either. What's strange is that when I mouse over the line of code in the View that breaks, the Model object is not null and I can see all of the values. – Eric Brown Mar 5 at 23:52

Your Answer

Get an OpenID
or

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