VB中的HTML Octothorpe

时间:2017-01-09 18:07:01

标签: html vb.net hashtag

我试图通过VB打开我的html文档。代码如下:

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles  Button1.Click
    Process.Start("file:///C:/Users/Michael/Desktop/Final/index.html#SL")
End Sub

我的问题是每次打开html文档时都不会去Octothorpe(#SL),它只会打开这个部分文件:/// C:/Users/Michael/Desktop/Final/index.html #SL。

请告知。

谢谢

1 个答案:

答案 0 :(得分:0)

在iexplore.exe上使用Process.Start,以便您可以专门指定URL作为其参数。您需要指定默认浏览器才能生效。

System.Diagnostics.Process.Start("iexplore.exe", @"file:///C:/Users/Michael/Desktop/Final/index.html#SL")