如何将silverlight集成到aspx中?
我已经创建了一个 Silverlight 应用程序,现在我想将其嵌入到我的 aspx 页面中。有没有这方面的视频教程,解释如何将 silverlight 集成到 aspx 页面中?
I have created a Silverlight application now I want to embed it into my aspx page. Is there any video tutorial for this, which explains how to integrate silverlight in aspx page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 Web 项目中,确保已包含对 silverlight 应用程序的引用,以便 .xap 文件位于 clientbin 文件夹中。
右键单击您的 Web 项目并选择属性。选择左侧的 Silverlight 应用程序选项卡。单击“添加...”按钮并选择现有的 Silverlight 项目。另外,选中“添加引用该控件的测试页”复选框,VS 将包含一个新的 .ASPX 页面,其中包含引用 Silverlight 控件的代码。
注意:这假设 silverlight 项目和 web 项目位于同一解决方案中。我认为他们是..
In your web project, make sure you've included a reference to the silverlight application so the .xap file will be in the clientbin folder.
Right-click on your web project and select Properties. Select the Silverlight Applications tab on the left. Click the Add... button and select your existing Silverlight project. Also, check the box that says, "Add a test page that references the control" and VS will include a new .ASPX page that will have the code to reference the Silverlight control.
Note: this assumes the silverlight project and the web project are in the same solution. I assume they are..
下面是如何将图表控件嵌入到 aspx 页面中的示例:
http://demos.telerik.com/aspnet-ajax/chart /examples/silverlight/defaultcs.aspx
Here is an example of how a chart control can be embedded in an aspx page:
http://demos.telerik.com/aspnet-ajax/chart/examples/silverlight/defaultcs.aspx