C# webbrowser判断页面是否加载完毕
Posted 代码描绘人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# webbrowser判断页面是否加载完毕相关的知识,希望对你有一定的参考价值。
private void Form1_Load(object sender, EventArgs e) { webalipay.Url = new Uri("https://authzth.alipay.com/login/homeB.htm"); webalipay.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted);//加载完成后的事件 } /// <summary> /// 页面加载完事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void wb_DocumentCompleted(object sender, EventArgs e) { //这个就是当网页载入完毕后要进行的操作 hdoc = webalipay.Document; htmlElement imgcode = Function.WebTools.GetElement_Id(hdoc, "J-checkcode-img"); codeurl = imgcode.GetAttribute("src"); piccode.Imagelocatio{过滤}n = codeurl; }
以上是关于C# webbrowser判断页面是否加载完毕的主要内容,如果未能解决你的问题,请参考以下文章
求助!!!我在vs2010 c#中添加一个webbrowser控件,在控件中初始化一页面,然后输入