• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

发布webclient并加载响应webbrowser控件以进行进一步操作。

用户头像
it1352
帮助1

问题说明



我发布到某个页面并正确获取响应字符串。我正在尝试加载带有所有cookie的响应字符串的webbrowser控件。当我在硬盘中保存响应字符串并加载带有保存字符串的webbrowser控件时它会加载页面但是webbrowser中没有cookie。



我想要做的是:加载带有响应的webbrowser控件来自webclient,一旦页面加载,我可以从webbrowser控件进一步操作。



请帮助。



我尝试过:



Hi,
i am posting to some page and get response string properly. i am trying to load webbrowser control with response string with all cookies. when i save response string in hard disk and load webbrowser control with saved string it loads page but there are no cookies in webbrowser.

what i want to do is : load webbrowser control with response got from webclient and once page loaded i can do further operation from webbrowser control.

please help.

What I have tried:

string s = webClient.Post("https://www.local.listing.com", "id=858&pass=588");

File.WriteAllText("test.htm", html);
this.wbBrowser.Navigate("c:\\test.htm");

正确答案

#1
Cookie与从中检索网址的域绑定,所以如果你从http://www.server.com获得一个网站,将其保存到磁盘并将webbroweser指向file:// c:\ home.html然后它不会给该页面提供www的cookie .server.com。



如果你想在webbrowser控件中工作,那么最好使用该控件来启动初始页面加载,而不是使用webclient和保存来源。
Cookies are tied to the domain the url was retrieved from, so if you get a site from http://www.server.com, save that to disk and direct the webbroweser to file://c:\home.html then it's not going to give that page the cookies for www.server.com.

If you want things to work in the webbrowser control then it is best you use that control to instigate the initial page load rather than using webclient and saving the source.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcffigf
系列文章
更多 icon
同类精品
更多 icon
继续加载