在 XP 中通过 aspx 页面打开 Silverlight 4 应用程序时出错

发布于 2024-09-16 19:03:49 字数 324 浏览 8 评论 0原文

我在我的Win7虚拟PC上的VS2010上创建了一个silverlight商业应用程序。 我只向 home.xaml 添加了一个按钮。模板代码中的其他所有内容都保持不变。

我在 IIS 7 上部署了该应用程序,当我尝试在 win XP 计算机上访问它时。我收到错误“Silverlight 应用程序中未处理的错误”代码:2105

经过一番谷歌搜索后,我发现通过 html 页面而不是 aspx 访问应用程序效果很好..确实如此。

然而,我们在 silverlight 应用程序中需要 Windows 身份验证,因此我需要 aspx 才能正常工作!

我该如何解决这个问题?

I created a silverlight business application on VS2010 in my Win7 virtual PC.
I only added a button to home.xaml..rest everything else is untouched in the template's code.

I deployed the application on IIS 7 and when I try access it on win XP machine..I get an error "Unhandled Error in Silverlight Application" code: 2105

After a bit of googling I found that accessing the application through html page instead of aspx works well..and It did.

however we need windows authentication in our silverlight application, so I need aspx to work well!

how can I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗲 2024-09-23 19:03:49

我发现的唯一解决方案是在 win XP 上部署应用程序或从 html 文件而不是 aspx 访问应用程序。
至于aspx页面中的Windows身份验证scrip-let,

<param name="Initparams" value="UserAccount=<%=HttpContext.Current.User.Identity.Name%>" />

我只是将上面的内容复制到html并配置IIS 7以在html中执行aspx代码(处理程序映射)

The only solution I found was to either deploy the App on win XP or access the app from html file instead of aspx..
As for windows authentication scrip-let in aspx page,

<param name="Initparams" value="UserAccount=<%=HttpContext.Current.User.Identity.Name%>" />

I just copied the above to html and configure IIS 7 to execute aspx code in html (handler mappings)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文