在 WebBrowser 控件中显示 xml+xslt
我需要在 Windows Phone 7.1 的 WebBrowser 控件中使用 xslt 转换显示 xml。 我将 xml 和 xsl 文件保存到独立的文件存储中。然后我做的
uxWebBrowser.Source = new Uri(xmlFileName, UriKind.Relative);
Xml 看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="mytransf.xsl"?>
<root>
<ta>foo<ta>
</root>
但我只看到“foo”,没有任何转换。基本上,我在上面的 href 属性中设置什么并不重要。结果总是一样的。似乎 WebBrowser 找不到 mytransf.xsl。我确信该文件存在于正确的位置。有趣的是,在 Windows Phone 7.0 中一切都很好。
有什么想法如何解决这个问题吗?
I need to display an xml using xslt transformation in WebBrowser control in Windows Phone 7.1.
I saved xml and xsl files into isolated file storage. Then I did
uxWebBrowser.Source = new Uri(xmlFileName, UriKind.Relative);
Xml looks like this:
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="mytransf.xsl"?>
<root>
<ta>foo<ta>
</root>
But I see only "foo" without any transformations. Basically, it doesn't matter what I set in href attribute above. The result is always the same. Seems WebBrowser cannot find mytransf.xsl. I'm sure that this file exists in the right place. The interesting thing is that in Windows Phone 7.0 everything was fine.
Any ideas how to fix this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论