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.
我是在 C# 中使用 WebBrowser Control 的初学者。我尝试更改用户代理字符串
我的 Windows 窗体中的 WebBrowser 控件。我怎样才能做到这一点 ?
请帮忙。
您可以在 WebBrowser 的 Navigate 方法中设置任何附加标头
WebBrowser wc = new WebBrowser(); wc.Navigate("http://google.com", null, null, "User-Agent: User agent");