c#WebBrowser GetElementById不起作用

时间:2018-03-15 16:53:51

标签: c# html webbrowser-control

我有这个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。我做错了什么?

0 个答案:

没有答案