How do you make a ASP.NET Control talk to a Silverlight app on the same page in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:53:28Z http://stackoverflow.com/feeds/question/264075 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/264075/how-do-you-make-a-asp-net-control-talk-to-a-silverlight-app-on-the-same-page-in-c 0 How do you make a ASP.NET Control talk to a Silverlight app on the same page in C# Yttrium 2008-11-05T01:04:17Z 2008-11-05T22:29:20Z <p>For example: </p> <p>First, say I have a Silverlight app with Windowless=true so that I can place ASP.NET controls on top of it. Then I place an ASP.NET button on the page. How can I have say the text of a control in the Silverlight app change when the user presses the ASP.NET button? How would I send the Silverlight app an update message from the C# code that catches the Click of the ASP.NET button?</p> <p>Thanks, Jeff</p> http://stackoverflow.com/questions/264075/how-do-you-make-a-asp-net-control-talk-to-a-silverlight-app-on-the-same-page-in-c/264174#264174 1 Answer by duckworth for How do you make a ASP.NET Control talk to a Silverlight app on the same page in C# duckworth 2008-11-05T02:09:58Z 2008-11-05T02:09:58Z <p>From what I can tell, based on your question, the Silverlight application is running in a web browser and you have it embedded in an asp.net page? The code for the asp.net button that you are dragging on the page lives on the server and gets sent to the web browser as html. When you click the button on the page it is submitting form data back to the server which ASP.NET interprets and calls your button click code. Since that code is executing on the server it cannot get to the silverlight app. If you really need to interact with the silverlight application directly on the client you would use javascript in the browser. </p> <p>Here is a basic example: <a href="http://blogs.vertigo.com/personal/ralph/Blog/archive/2008/05/15/call-silverlight-from-javascript-call-javascript-from-silverlight.aspx" rel="nofollow">http://blogs.vertigo.com/personal/ralph/Blog/archive/2008/05/15/call-silverlight-from-javascript-call-javascript-from-silverlight.aspx</a></p> http://stackoverflow.com/questions/264075/how-do-you-make-a-asp-net-control-talk-to-a-silverlight-app-on-the-same-page-in-c/264736#264736 1 Answer by deepcode.co.uk for How do you make a ASP.NET Control talk to a Silverlight app on the same page in C# deepcode.co.uk 2008-11-05T10:00:57Z 2008-11-05T10:00:57Z <p>From memory, you need to expose a scriptable member from your silverlight application, eg:</p> <pre><code>[ScriptableMember()] public void ChangeText(string newText) { // Update your text control here } </code></pre> <p>and register it for scripting from javascript in the constructor:</p> <pre><code>public MySilverlight() { InitializeComponent(); HtmlPage.RegisterScriptableObject("MyObject", this); } </code></pre> <p>You can then invoke it from javascript as;</p> <pre><code>function ChangeText() { var yourObject = getElementById("yourObjectID"); yourObject.Content.MyObject.ChangeText("New Text"); } </code></pre> <p>Then just wire up the button's client click to invoke the javascript ChangeText method.</p> <p>Hope this helps.</p>