HTML代码
<input type="radio" name="type" value="0" id="b" />
<input type="radio" name="type" value="1" id="b" />
<input type="radio" name="type" value="2" id="b" />
<input type="radio" name="type" value="3" id="b" />
<input type="radio" name="type" value="4" id="b" />
在C#的webBrowser里,用什么代码能选中最后1个单选按钮?ID根本一样的(网页时人家的,不能更改),
用
HtmlElement tab= webBrowser1.Document.All["b"];
tab.SetAttribute("checked", "true");
只能操作第一个1个单选..
求助.很急.