London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

silverlight component

Vote:
0

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:
0
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.