WebBrowser控件直接显示html文本而不是html的浏览器视图
我在 .NET 应用程序中使用 WebBrowser 控件。 我构造一个 html 文本,然后将控件属性 DocumentText 设置为该 html。 它在我的电脑上运行良好。 在其他一些计算机上,它只是将源显示为文本。 我认为它可能与某些资源管理器属性有关,但我真的不知道为什么它会这样。 我该如何处理它才能始终显示正确的视图? 或者至少我可以在特定计算机上修复什么以使应用程序正常工作/
I'm using WebBrowser control in .NET app. I construct a html text, then set the controls property DocumentText to this html. It works fine on my computer. On some other computers it simply displays the source as a text. I think that it may be connected with some explorer properties but I don't really know why it is behaving like this. How can I handle it to always display proper view? Or at least what can I fix on a specific computer so that the application works fine/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 HTML 转储到磁盘并将 URL 设置为文件的方法总是很糟糕。 但这不是一个好的解决方案。
There is allways the sucky way of dumping the HTML to disk and set the URL to the file. But that is not a good solution.