我正在尝试填写此表格,但我在填写时遇到了麻烦。这是网页
我试过了,但没有用
wb.Document.GetElementById("entry_0").InnerText = textBox1.Text;
我不知道如何点击提交按钮
IHTMLElementCollection m_hec;
foreach (HTMLInputElementClass he in m_hec)
{
if (he.getAttribute("name").ToString() == "FIELD[]")
if (he.getAttribute("value") != null)
lstInput.Add(he.getAttribute("value").ToString());
else
lstInput.Add("");
}
看这里