このフォームに入力しようとしていますが、うまくいきません。ウェブページはこちら
私はこれを試しましたが、うまくいきませんでした
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("");
}
ここを見て