Try our conversational search powered by Generative AI!

silverlight component

Vote:
 

I have created a custom property and a silverlight component to present one in edit and view mode :

public override void CreateEditControls() {

System.Web.UI.SilverlightControls.Silverlight sl = new System.Web.UI.SilverlightControls.Silverlight();

sl.Source = EPiServer.UriSupport.Combine(UriSupport.SiteUrl.ToString(), "ClientBin/DagensIndustri.SilverLightDemo.xap");

sl.ID = "VideoPlayerXAML";

sl.MinimumVersion = "2.0";

sl.ScaleMode = System.Web.UI.SilverlightControls.ScaleMode.None;

sl.Width = System.Web.UI.WebControls.Unit.Pixel(850);

sl.Height = System.Web.UI.WebControls.Unit.Pixel(400);

Controls.Add(new ScriptManager());

Controls.Add(sl);

}

 But I have an error when property should be displayed : "Script controls may not be registered before PreRender"

Does anybody have any sugestions?

#33008
Sep 29, 2009 9:18
Vote:
 
I have resolved this proble by usege <object ...> markup
#33120
Oct 02, 2009 11:29
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.