在 XP 中通过 aspx 页面打开 Silverlight 4 应用程序时出错
我在我的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现的唯一解决方案是在 win XP 上部署应用程序或从 html 文件而不是 aspx 访问应用程序。
至于aspx页面中的Windows身份验证scrip-let,
我只是将上面的内容复制到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,
I just copied the above to html and configure IIS 7 to execute aspx code in html (handler mappings)