up vote 1 down vote favorite
share [g+] share [fb]

I can do most things I need to with mshtml, but I'm a bit stuck with how to set a checkbox input element to "checked". Here's the situation...

IHTMLElementCollection inputElements = (IHTMLElementCollection)doc.all.tags("input");
foreach (IHTMLElement el in inputElements)
{
    string elementHtml = el.outerHTML;
    string termsOfServiceIdentifier = "id=chkUTOS_ver2";

    //  select the Terms of Service checkbox
    if (elementHtml.Contains(termsOfServiceIdentifier)) 
    {
        HTMLInputElement chkTOS = (HTMLInputElement)el;
        chkTOS.@checked = true;  //  that's the solution. Thanks Wayne.
     }
     else
     {
        //  do nothing - we're not interested in this element
     }
}

Thanks in advance for any help!

Gregg

link|improve this question

64% accept rate
feedback

2 Answers

up vote 3 down vote accepted

HTMLInputElement exposes the Checked property as a Boolean

link|improve this answer
I must have messed something up before, 'cause it wasn't in Intellisense. Now it sure is. Cheers Wayne! – Gregg Cleland May 2 '09 at 10:25
I just tried and found I had to use @checked from C# for it to complile. checked is a reserved word. – Martin Capodici Sep 26 '11 at 22:07
feedback

In plain JavaScript, checkbox elements have a checked property. So [in plain JavaScript] you might write:

document.getElementById("myCheckbox").checked = true;

I don't know .NET or whatever you're using there, but they may do it in a similar way.

Steve

link|improve this answer
Thanks for the help. BTW It's C#. – Gregg Cleland May 2 '09 at 10:45
feedback

Your Answer

 
or
required, but never shown

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