Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在使用HttpWebRequestVB.Net 的网站上获取标题标签中的文本。
HttpWebRequest
是否可以使用HttpWebRequest和/或检索文本HttpWebResponse?
HttpWebResponse
这些HttpWebRequest类是关于发送 HTTP 请求的。 他们对 HTML 一无所知。
相反,您需要使用 HTML 解析器,例如 HTML Agility Pack。
看看 webclient.DownloadString。这应该将您的网页作为字符串检索,您可以在其中找到标题标签。