我有这个HTML代码:
<div style="font-size: 0.8em; font-weight: bold">
<label
for="formFile" style="margin-right: 10px">Select a file:
</label>
<input
class="text" type="file" tabindex="1" value="" id="formFile"
name="formFile"
/>
</div>
这是我的代码,用于查找HtmlElement formFile :
HtmlElement oElement = webBrowser1.Document.GetElementById("formFile");
但是oElement始终为null。我做错了什么?