vote up 1 vote down star

Is there a way to uncheck/check a checkbox within a webpage that is loaded within a webbrowser control? Thank you.

Update: (This is what I originally tried with no luck)

HtmlDocument rememberme = this.webBrowser1.Document;
rememberme.GetElementById("remBox").SetAttribute("checked", "false");
flag

1  
Short answer is "Yes." – Telos Nov 5 at 14:02
The CHECKED attribute is not actually a bool, but a present or not present, which is probably why SetAttribute("checked", "false") failed. You might be able to just remove the attribute entirely. – Myles Nov 5 at 15:58

4 Answers

vote up 1 vote down check

You can use:

webBrowser.Document.InvokeScript

see:

InvokeScript

This way you can call JS function that will do what you want to the page.

Another way is to use mshtml API, like this: ( ( HTMLInputElement )this.webBrowser1.Document.GetElementById( "test" ).DomElement ).@checked = false;

link|flag
What would be a proper way to use JavaScript to uncheck a single checkbox? – Nate Shoffner Nov 5 at 14:25
It depends - if you know checkbox's ID, then just use document.getElementById( 'yourid' ).checked = false; But if it is dynamic (like in ASP.NET in control) than you would have to use another way - locate it by class name, traverse DOM tree or something. – Majkel Nov 5 at 14:40
vote up 0 vote down

In javascript you should be able to use the clientId to set .checked = false.

link|flag
What does that have to do with the webbrowser control? – Telos Nov 5 at 14:05
vote up 0 vote down

http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.invokescript.aspx you need to analyze the page structure to find out how to locate the checkbox and use Myles's method to check/uncheck the checkbox in javascript.

link|flag
This all seems very overcomplicated... – Telos Nov 5 at 14:08
It would be more complicated if you skip .Net's wrapper classes and call IE API directly. – Sheng Jiang 蒋晟 Nov 5 at 14:15
My point is that once you've got the document in the webbrowser control you can manipulate the dom objects directly, without resorting to javascript. – Telos Nov 5 at 14:34
For instance, see the edit to my answer... – Telos Nov 5 at 15:38
vote up 0 vote down

The LONG version is that you'll have to use DOM functions to find the client ID of the control you want to update, then just set it's value.

I can probably find some sample code for you once I get to work if no one else beats me to it...

EDIT:

Basically all you need to do is:

HTMLDocumentClass doc = webBrowserControl.Document as mshtml.HTMLDocumentClass;

HTMLInputElement input = doc.all.item("checkboxID", 0) as HTMLInputElement;

input.value ="false";  //Could be 0, not sure... 
//could also be input.@checked = false, sorry I haven't actually used this on a checkbox before... one of these should work though

So yeah, not sure why anyone would go through all the effort to write a JavaScript and invoke it when you can set a control's value with 3 lines of code.

link|flag
It should be input.@checked = false;. And using JS you don't have to reference mshtml and you can do this in one line - this.webBrowser1.Document.InvokeScript( "uncheck" );. – Majkel Nov 5 at 15:41
Well, one line in C# + one in JS. – Majkel Nov 5 at 15:42
Well I could condense it down to one line of C# if I really wanted to. ;) I suspect actually adding the script to the page and using it would end up being more. – Telos Nov 5 at 16:02
Solution with mshtml in my answer actually is one line ;) And JS approach to be one line would require access to the page source - otherwise it would be necessary to use mshtml API to insert your script. – Majkel Nov 5 at 19:24

Your Answer

Get an OpenID
or

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