登録プログラムを作成しようとしています:例:Button1クリックイベント:
WebBrowser wb = new WebBrowser();
wb.Navigate("register site");
wb.Document.GetElementById("passwort").SetAttribute("value", textBox1.Text);
wb.Document.GetElementById("register").InvokeMember("click");
これが登録ページのhtmlコードです(ビューソースから):
<td><h5>Password:<br><input type="password" name="passwort"></td>
<td> <input type="submit" name="register" value="Registri"></td>
IDがないため、彼の名前で要素を取得する機会はありますか?