要在vb.net上打开特定页面,我们可以使用代码
Dim webAddress As String = "http://www.example.com/"
Process.Start(webAddress)
参考:Open a webpage in default webbrowser
但是如果我们不打开像localhost/thing
??
答案 0 :(得分:2)
请确保在localhost网址前面使用http://:
Dim webAddress As String = "http://localhost/thing"
Process.Start(webAddress)