When working with Silverlight 2, most will be working with managed code (c#, vb, etc.). But likely people are working with Silverlight as an additive value to their web application, providing some enhanced user experience to an application. there may be times where you will still need to call back into the hosting html context. For then, you'll want to be familiar with two objects HtmlDocument and HtmlPage.
Both of these objects provide access to the page context hosting your silverlight control. If you need to seek things in the HTML DOM, you could use the HtmlDocument class. For example,...