0

我正在尝试填写此表格,但我在填写时遇到了麻烦。这是网页

无标题表格

我试过了,但没有用

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

我不知道如何点击提交按钮

4

1 回答 1

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("");
    }

这里

于 2012-12-02T01:46:01.437 回答