如何从浏览器项目中下载SL4中的互联网(http)文件?
我的功能是在下载文件之前在弹出浏览器中打开一个互联网页面。但是当我更改为 SL4 并退出浏览器后,似乎弹出窗口不再起作用
System.Windows.Browser.HtmlPage.PopupWindow(_uri, "Report", null);
,然后我还尝试了 HttpWebRequest 和 WebBrowser。似乎他们都不会询问用户是否下载文件,只是保持沉默。
my function open a internet page in pop-up browser before to download a file. But after I change to SL4 and out-of-browser, seems the pop-up is no longer working
System.Windows.Browser.HtmlPage.PopupWindow(_uri, "Report", null);
and then I also tried HttpWebRequest and WebBrowser. Seems they both won't ask the user to download the file or not, but just stay silence.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,我通过检查 OOB 模式时,使用 Shell 命令获取 http URL 来解决这个问题,然后会直接提示下载框。
Finally, I sloved this by checking when OOB mode, use Shell command for the http URL, then a download box will prompt directly.