Hi,I have a small Silverlight map application that I call from an ASP.NET web page using using the "object" tag as follows:
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="590" height="300">
<param name="source" value="ClientBin/MapViewer.xap"/>
<param name="onError" value="onSilverlightError" />
<param name="background" value="white" />
<param name="minRuntimeVersion" value="4.0.50401.0" />
<param name="autoUpgrade" value="true" />
<param name="initParams" value="<%= lang %>" />
I have figured out how to pass parameters to the application using the "param" parameter of the "object" tag. Now, I need to do the reverse. I need to have the Silverlight application either set the value of a textbox for example, on the ASP.NET parent page, or find some other way to send data back to the parent page. As anyone done this before?Thanks,Paul