Basically I have a silverlight web App that resides within an IFrame. and that IFrame resides within a Frame of its own. And i want to access Buttons in the dom within the outer Frame.. Here is kind of a map of how it looks.
-My Application
-Frame
-Button
-Iframe
-Silverlight web wrapper
-Silverlight
Can I and How do i get from the silverlight App all the way back up the dom to click that dang button?
Thanks for any help you can offer.
this should be pretty easy to do. You can directly access the DOM via
HtmlPage.Documentobject:Make certain to first add a reference to the
System.Windows.Browsernamespacehere is more information. and here is the MSDN doc on HtmlDocument object.