5
votes
How can I pass an ASP.NET querystring value into my silverlight 2 control?
While this covers the concept in startup parameters (which is possibly what you are doing) here's a walk-through about it. …
3
votes
Silverlight IninParams
When you say programmatically, do you mean you still want the server to set some values? Consider a LiteralControl and have it replace with the:
<param name="initparams" value=" …
0
votes
How to pass parameter into silverlight so that it is “behind the scenes”
You can pass parameters to a Silverlight application using the initParams option in the plugin. Load that with some ASPNET code and you can dynamically set it at load time.
…
1
vote
asp:MediaPlayer (Silverlight) Https / http issue
You are running into a cross-scheme violation unfortunately. The stream would need to match the same scheme (https) as the hosting application. Unfortunately most streaming isn't available in HTT …
