vb.net检查网页是否在默认浏览器中打开

时间:2018-08-02 13:44:03

标签: vb.net web

我想检查是否在默认浏览器中打开了特定的网页,但是我真的不知道该怎么做。到目前为止,我已经使用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

到目前为止,在所有解决方案中,这都是通过指定浏览器来完成的...

0 个答案:

没有答案