vote up 6 vote down star

Why in the world does the line:

<%= Html.CheckBox("ForSale", Model.Product.ForSale)%> For Sale

result in the following HTML:

<input id="ForSale" name="ForSale" type="checkbox" value="true" />
<input name="ForSale" type="hidden" value="false" />
For Sale

Now whenever I check the box and access Request.Form["ForSale"], I get the ridiculous answer of "true,false". Am I supposed to parse that?

This hidden field doesn't appear for the other HtmlHelper controls, so why does it for CheckBox?

How do I turn this stupid "feature" off? Or did the HtmlHelper just outgrow its usefulness?

Update

From the answer below, it seems that there is some logic behind this. I have prepared a little extension method so I don't have to think about it (thanks to @eu-ge-ne):

    public static bool GetCheckBoxValue(this System.Web.HttpRequestBase req, 
                                        string name) {
        return Convert.ToBoolean(req.Form.GetValues(name).First());
    }
flag

4  
If you're using Request.Form, you're probably doing it wrong. – mgroves Jul 14 at 19:07
1  
+1 - I just ran into this issue the other day as well. Seems like they were trying to be helpful but just ended up annoying those of us that actually know how checkboxes are supposed to work. – Eric Petroelje Jul 14 at 19:08
2  
@mgroves mind posting an answer to let me know what it is that I'm probably doing wrong? – Frank Krueger Jul 14 at 19:16
3  
Why don't you just put the boolean in your action method signature and let model binding do the work for you? – Brad Wilson Jul 15 at 12:52
Well it's not an answer to your question is why :) I would suggest using the model binder (i.e. what Brad said). – mgroves Jul 15 at 13:27

7 Answers

vote up 0 vote down

I think the cleanest solution is to do:

(bool)formCollection["key"].ConvertTo(typeof(bool))
link|flag
vote up 0 vote down

try

request.form["chkBoxes"].replace("false","").split(new char[] {','}, stringsplitoptions.removeemptyentries);

link|flag
vote up 0 vote down

I have generated checkboxes on a fly...so i dont get the id of those checkboxes. then how can i get the checkbox values and name....like this GetValues("CheckBoxId").Contains("true"))

link|flag
vote up 1 vote down

Here's how I've done it in one of my apps. Frustrating, but it seems to work.

public virtual ActionResult Edit(int id, FormCollection values)
{
    SomeObject dbData = _repository.GetSomeObject(id);

    try
    {
        UpdateModel(dbData);
        if (values.GetValues("CheckBoxId").Contains("true")) 
            dbData.SomeBooleanProperty = true;
        else 
            dbData.SomeBooleanProperty = false;

        _repository.Save();

        Session["Success"] = "Successfully edited the part.";
        return RedirectToAction("Index");
    }
    catch
    {
        // Handle validation errors here
        return View(new SomeObjectFormViewModel(dbData));
    }
}

Hope this helps. If you've got any follow-up questions, just leave a comment and I'll update my answer accordingly.

link|flag
vote up 2 vote down

Now whenever I check the box and access Request.Form["ForSale"], I get the ridiculous answer of "true,false". Am I supposed to parse that?

Try this:

var ForSale = Convert.ToBoolean(Request.Form.GetValues("ForSale").First());

UPDATED:

What if in the next MVC build it will return the value in the revers order "false, true"? ... – Mastermind

var ForSale = Request.Form.GetValues("ForSale")
    .Select(x => x.ToUpperInvariant()).Contains("TRUE");

// or

// FormatException can be thrown from Convert.ToBoolean()
var ForSale = Request.Form.GetValues("ForSale")
    .Select(x => Convert.ToBoolean(x)).Contains(true);
link|flag
What if in the next MVC build it will return the value in the revers order "false, true"? It's a workable but not reliable solution. Which is why I abandoned the built-in helpers and did my own. – User Jul 14 at 19:16
1  
What if in the next MVC build pink dragons fart toxic gas on us? – Frank Krueger Jul 14 at 19:57
@Frank Krueger - hope not in MVC2 – eu-ge-ne Jul 14 at 20:03
vote up 1 vote down

If a CheckBox is not checked, then it will not be included in the form submission. So this "feature" gives you a result for every CheckBox. Those that are not checked will be simply "false".

I have implemented my own CheckBox helper functions that work differently. Most of the time I don't want just true or false, but just a collection of the values of the checked boxes. It's great for selecting certain items by their id on which to perform an action. I don't want the unchecked items even in the list.

You can take a look at the source code for the html extensions and use a similar structure to create your own CheckBox methods.

http://aspnet.codeplex.com/sourcecontrol/changeset/view/23011?projectName=aspnet#288010

I would post mine, but I'm not using the standard HtmlHelper class, so it would probably be more confusing. I did add a value parameter to my CheckBox functions so that I can use a specific id value instead of "true" or "false".

link|flag
vote up 8 vote down

It forces the field to be included if it's unchecked. If you uncheck a check box it doesn't get sent as part of the page - they are only sent if they're checked, and then there's a value of true. The hidden field ensures that false will be send if the check box is unchecked, as the hidden field is always sent.

link|flag
So I am supposed to parse the string? – Frank Krueger Jul 14 at 19:08
1  
You should not parse the string, neither use the Request object directly in your action:just use a boolean as one of your action method parameters and everything will be handled for you – CodeClimber Jul 15 at 13:44

Your Answer

Get an OpenID
or

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