change silverlight params value with jquery?
when i click a image from my html file i want to change silverlight params value (ex. m=sample.wmv) with jquery without refresh page. can i do that?
Code is below which开发者_如何学Go i used for silverlight.<param name="initparams" value='m=sample.wmv, autostart=false, autohide=false, thumbnail=sample.jpg' />
No. The InitParams property on the Silverlight plug-in object must be set prior to the page creating an instance of the object. Write-once during instantiation and read-only at run time.
MSDN Documentation on InitParams
After instantiation, you can make use of Silverlight's HTML bridge instead.
精彩评论