SharePoint页面如何嵌入xap文件(silver light)

sdenli 2010-02-04 03:24:54
自己写了一个简单的XAP文件 只是显示了一个BUTTON控件
然后只是在ASP.NET WEB APPLICATION中一个空白页面上面嵌入 显示都正常

但是一旦把它嵌入了Sharepoint的ASPX页面上去 就无法显示了
提示这个错误
Error:Unhandled Error in Silverlight Application
code:2104
category:InitializeError
message:2104 An error has occurred

请高手们分析下 如何才能正常部署到SharePoint网页上去 除了使用WEBPART方法 谢谢
...全文
200 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
jv9 2010-02-05
  • 打赏
  • 举报
回复
Silverlight官方社区,给出了解决方案,参考他们的步骤就可以实现了。

http://forums.silverlight.net/forums/t/2275.aspx
http://social.msdn.microsoft.com/Forums/en/sharepoint2010general/thread/7982df32-8c26-4bac-b138-9391db78e6ca
sdenli 2010-02-04
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 xingjunli 的回复:]
IIS中需要设置
网站属性》HTTP头》MIME类型,新建如下两个MIME类型
扩展名      MIME类型
.xaml    application/xaml+xml
.xap      application/octet-stream

SharePoint不知道有没有地方弄
[/Quote]

这个我都已经设置好了
xingjunli 2010-02-04
  • 打赏
  • 举报
回复
IIS中需要设置
网站属性》HTTP头》MIME类型,新建如下两个MIME类型
扩展名 MIME类型
.xaml application/xaml+xml
.xap application/octet-stream

SharePoint不知道有没有地方弄
xingjunli 2010-02-04
  • 打赏
  • 举报
回复
sharePoint没有玩过尝试使有下面的JS方法看能不能正常
function ShowFlash(Wd, Hg,xapName) {
document.write('<object id="silverlightControl" data="data:application/x-silverlight," type="application/x-silverlight-2" width="' + Wd + '" height="' + Hg + '">');
//document.write('<a class="viewDownLoad" href="ClientBin/Silverlight.2.0.exe"><img src="ClientBin/DownLoad.gif" border=0 alt=""/></a>');
document.write('<param name="source" value="ClientBin/' + xapName + '.xap"/>');
document.write('<param name="wmode" value="transparent" />');
document.write('<param name="onerror" value="onSilverlightError" />');
//document.write('<param name="background" value="transparent" />');
document.write('<param name="windowless" value="true" />');
document.write('<a href="Silverlight.2.0.exe" style="text-decoration: none;">');
document.write('<img src="images/load.bmp" alt="Get Microsoft Silverlight" style="border-style: none"/></a>');
document.write('</object>');
}

8,757

社区成员

发帖
与我相关
我的任务
社区描述
WPF/Silverlight相关讨论
社区管理员
  • WPF/Silverlight社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧