https://www.youbianku.com/使用WebBrowser访问(设置了调整了内核ie11),查询内容,结果出现脚本发生错误,错误内容是语法错误,查询不了结果。
使用
Dim
htc As new HttpClient("https://www.youbianku.com/")
OutPut.Show("更新日期:" & htc.LastModified)
OutPut.Show("状态码:" & htc.StatusCode)
OutPut.Show("状态描述:" & htc.StatusDescription)
OutPut.Show("内容类型:" & htc.ResponseContentType)
OutPut.Show("内容长度:" & htc.ResponseContentLength)
For
Each key As
String In htc.ResponseHeaders.Keys '显示服务器返回的头部信息
OutPut.Show(Key & ":" & htc.ResponseHeaders(key))
Next
返回结果全是0或者空白,但是访问http的网站没问题,这个是需要哪个地方调整下?