自动填写此网页

时间:2012-12-02 01:40:42

标签: c#

我正在尝试填写此表单,但我无法完成此操作。 这是网页

Untitled form

我尝试了这个但是没有用

wb.Document.GetElementById("entry_0").InnerText = textBox1.Text;

我不确定如何点击提交按钮

1 个答案:

答案 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