我用vb.net中的webbrowser提取超链接,代码如下:
Timer1.Enabled = False
Dim web As WebBrowser = WebBrowser1
For Each i As HtmlElement In web.Document.GetElementsByTagName("a")
url = url + i.InnerText + i.GetAttribute("href")
Next
My.Computer.Clipboard.SetText(url)
MessageBox.Show("go")
是可以提取源代码的,但是我发现对于如下的url
https://……&bcoffset=1&data-key=s&data-value=44,&bcoffset后面的无法提取,反而转换成了#,请问下这是因为什么呢,应该不是因为字符串长度的问题,而且#也不应该是什么特殊编码,请问下高手有没有遇到这个问题,应该怎么解决呢