我想检查是否在默认浏览器中打开了特定的网页,但是我真的不知道该怎么做。到目前为止,我已经使用Process.Start(“ xxx”)在默认浏览器中打开所需的页面。
Dim website As String
website = "http://www.google.com"
'If http://www.google.com is not opened
Try
Process.Start(website)
Catch ex As Exception
MsgBox("Something wrong happened" & vbCrLf & ex.Message, MsgBoxStyle.OkOnly, "Cannot open the page")
End Try
到目前为止,在所有解决方案中,这都是通过指定浏览器来完成的...