Is there a way to insert Silverlight XAML into my page using ASP.NET code-behind?

后端 未结 4 1850
眼角桃花
眼角桃花 2021-01-03 19:08

So, I want to create some Silverlight charts from some data on my ASP.NET web page. The way to do this, either using Visifire (my current thing) or the upcoming Silverlight

4条回答
  •  灰色年华
    2021-01-03 19:26

    I suggest you to download the ASP.NET Silverlight Server Control. More information for this control can be found here. In general, you put the compiled XAM file in the BIN directory and then link the XAML to the asp:Silverlight control. He takes care of the rest. In addition, it is possible to pass some parameters to Silverlight using the input params collection of asp:Silverlight. It is a cumbersome approach, but it works.

提交回复
热议问题