With in your silverlight application you can write the following code to get the HTMl elements
HtmlDocument _doc = HtmlPage.Document;
_doc.GetElementById("ValueText").SetProperty("Value", txtName.Text);
Now the html textbox value is set from the Silverlight application.Like wise you can get the value of the HTML element inside the second silverlight pluggin.