请我在“if (webBrowser1.DocumentCompleted);”下面的代码上需要帮助
这是我单击按钮后想要发生的事件:1.)检索网页 2.)如果网页已完成加载,则填写表单属性
我被困在第 2 位。加载后如何做出与页面有关的“IF”语句
private void button1_Click(object sender, EventArgs e)
{
webBrowser1.Navigate("costco.com/Common/Login.aspx?cm_re=1_en-_-Top_Right_Nav-_-Top_login&topnav=&whse=BC&lang=en-US")
if (webBrowser1.DocumentCompleted);
webBrowser1.Document.GetElementById("_ctl0_EmailAddress").SetAttribute("value", "RogerWilliams");
}
“if (webBrowser1.DocumentCompleted);”有错误