Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让 VB 在用户不知情的情况下“访问”网页。该网站只需加载,无需进一步操作。有没有在不使用网络浏览器的情况下这样做?
由于您不想打开浏览器,因此您只需触发一个请求。这可能会帮助您完成它:
msdn.microsoft.com/de-de/library/debx8sh9.aspx
这将在默认浏览器中打开页面:
Dim adr As String = "http://www.stackoverflow.com/" Process.Start(adr)