喜
我正在开发一个与网站互动的winform应用程序。 使用webbrowser控件我控制网站。并使用
`HtmlDocument webDoc1 = this.webBrowser1.Document; HtmlElementCollection aTags = webDoc1.GetElementsByTagName
我正在浏览页面
我想从下面的标签中获取innertext,即内容,等等,并将其填充到winform中的列表框中
<th>Assigned To</th>
<td><select name="assignedto">
<option value="-1">- no selection -</option>
<option value="169">something2</option>
<option selected="selected" value="244">something3</option>
<option value="91">something1</option>
</select></td>
这可能是做到这一点的可能方式。