我正在尝试填写此表单,但我无法完成此操作。 这是网页
我尝试了这个但是没有用
wb.Document.GetElementById("entry_0").InnerText = textBox1.Text;
我不确定如何点击提交按钮
答案 0 :(得分:0)
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("");
}
看here