在Web浏览器中打开的特定页面

时间:2015-01-21 21:21:44

标签: vb.net

要在vb.net上打开特定页面,我们可以使用代码

 Dim webAddress As String = "http://www.example.com/"
    Process.Start(webAddress)

参考:Open a webpage in default webbrowser

但是如果我们不打开像localhost/thing ??

那样的页面怎么办?

1 个答案:

答案 0 :(得分:2)

请确保在localhost网址前面使用http://:

Dim webAddress As String = "http://localhost/thing"
Process.Start(webAddress)