c#应用程序,用于检测浏览器中的表单字段

时间:2013-01-11 14:48:50

标签: c# html browser

我创建了一个填充网站字段的winForm应用程序:

private void Form1_Load(object sender, EventArgs e)
        {
           this.webBrowser1.Navigate(new Uri("http://www.site.com”));
            this.textBox1.Text = this.webBrowser1.Version.ToString();
        }
private void button1_Click (object sender, EventArgs e)
        {
            System.Windows.Forms.HtmlDocument document =
       this.webBrowser1.Document;

            document.GetElementById("login").SetAttribute("Value","user");

        }

在网站页面加载到应用程序控件中时,它非常有效,但是当我想使用webBrowser1.Navigate(new Uri("http://www.site.com”),true);在新浏览器中打开它时,页面字段无法检测到。 有这个问题的解决方案吗?提前致谢

0 个答案:

没有答案